Skip to content

Commit

Permalink
Merge pull request #7 from ppp0/issue-7
Browse files Browse the repository at this point in the history
fix compatibility on ruby 1.9.x
  • Loading branch information
y-ken committed Jun 6, 2016
2 parents 1a6744d + 22b724b commit 11ff1f3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions fluent-plugin-sentry.gemspec
Expand Up @@ -23,7 +23,10 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "test-unit", '~> 3'
end
spec.add_development_dependency "appraisal"

spec.add_runtime_dependency "fluentd"
if defined?(RUBY_VERSION) && RUBY_VERSION < '2'
spec.add_runtime_dependency "fluentd", "< 0.14.0"
else
spec.add_runtime_dependency "fluentd"
end
spec.add_runtime_dependency "sentry-raven", "~> 0.15.0"
end

0 comments on commit 11ff1f3

Please sign in to comment.