Skip to content

Commit

Permalink
Fix limits on acceptable dependency versions
Browse files Browse the repository at this point in the history
This version of guard-jruby-rspec is not compatible with guard-rspec
4.x, which depends on guard >= 2.0.

It also lost compatibility with guard-rspec < 2.0.0 in
5f8ec60.
  • Loading branch information
nilbus committed Feb 6, 2015
1 parent f9d4534 commit 64a04f9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions guard-jruby-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ Gem::Specification.new do |s|
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-jruby-rspec'

s.add_dependency 'guard', '>= 0.10.0'
s.add_dependency 'guard-rspec', '>= 0.7.3'

s.add_development_dependency 'rspec', '~> 2.7'
s.add_dependency 'guard', '>= 0.10.0', '< 2.0.0'
s.add_dependency 'guard-rspec', '>= 2.0.0', '< 4.0.0'
s.add_dependency 'rspec', '~> 2.7', '< 2.99'

s.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.md]
s.require_path = 'lib'
end
end

0 comments on commit 64a04f9

Please sign in to comment.