Skip to content

Commit

Permalink
Drop pessimistic upper-bounds entirely
Browse files Browse the repository at this point in the history
All pain, no gain.
  • Loading branch information
dhh committed May 9, 2017
1 parent 96cefe6 commit f0c3d62
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions rails-observers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.2.2'

s.add_dependency 'activemodel', '>= 4.0', '< 6.0'
s.add_dependency 'activemodel', '>= 4.0'

s.add_development_dependency 'minitest', '>= 3'
s.add_development_dependency 'railties', '>= 4.0', '< 6.0'
s.add_development_dependency 'activerecord', '>= 4.0', '< 6.0'
s.add_development_dependency 'actionmailer', '>= 4.0', '< 6.0'
s.add_development_dependency 'actionpack', '>= 4.0', '< 6.0'
s.add_development_dependency 'activeresource', '>= 4.0', '< 6.0'
s.add_development_dependency 'sqlite3', '~> 1.3'
s.add_development_dependency 'railties', '>= 4.0'
s.add_development_dependency 'activerecord', '>= 4.0'
s.add_development_dependency 'actionmailer', '>= 4.0'
s.add_development_dependency 'actionpack', '>= 4.0'
s.add_development_dependency 'activeresource', '>= 4.0'
s.add_development_dependency 'sqlite3', '=> 1.3'
end

3 comments on commit f0c3d62

@brchristian
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dhh I think you want >= 1.3, rather than => 1.3

@dhh
Copy link
Member Author

@dhh dhh commented on f0c3d62 May 9, 2017 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kaspth
Copy link
Contributor

@kaspth kaspth commented on f0c3d62 May 9, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can never kill that sweet hash rocket muscle memory 🤘

Please sign in to comment.