Skip to content

Commit

Permalink
set upper bound on rails dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Sep 18, 2013
1 parent b097dca commit 7dac73a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cucumber-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency('capybara', '>= 1.1.2')
s.add_runtime_dependency('cucumber', '>= 1.3.8')
s.add_runtime_dependency('nokogiri', '>= 1.5.0')
s.add_runtime_dependency('rails', '>= 3.0.0')
s.add_runtime_dependency('rails', ['>= 3', '< 5'])

This comment has been minimized.

Copy link
@mathieujobin

mathieujobin Jul 5, 2016

Contributor

any specific reason why would cucumber 1.4.x not work with rails 5 ?


# Main development dependencies
s.add_development_dependency('ammeter', '>= 0.2.9')
Expand All @@ -24,7 +24,7 @@ Gem::Specification.new do |s|
s.add_development_dependency('builder', ['>= 2.1.2', '< 3.2'])
s.add_development_dependency('bundler', '~> 1.3.5')
s.add_development_dependency('database_cleaner', '>= 0.7.2')
s.add_development_dependency('factory_girl', '>= 3.2.0')
s.add_development_dependency('factory_girl', '>= 3.2')
s.add_development_dependency('rake', '>= 0.9.2.2')
s.add_development_dependency('rspec', '>= 2.2')

Expand Down

0 comments on commit 7dac73a

Please sign in to comment.