Skip to content

Commit

Permalink
More correct requirement specifier
Browse files Browse the repository at this point in the history
Technically, if the rails team released a new "5.0.1.zeitgeist"
prerelease version and rubygems behavior was fixed according to
rubygems/rubygems#2597, this requirement would
no longer do what it's supposed to do.

This will clearly not happen, but I wanted to raise awareness of this
xD.
  • Loading branch information
deivid-rodriguez committed Feb 14, 2019
1 parent c339f72 commit 932aef1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rails-controller-testing.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.2.2'

s.add_dependency "actionpack", ">= 5.0.1.x"
s.add_dependency "actionview", ">= 5.0.1.x"
s.add_dependency "activesupport", ">= 5.0.1.x"
s.add_dependency "actionpack", ">= 5.0.1.rc1"
s.add_dependency "actionview", ">= 5.0.1.rc1"
s.add_dependency "activesupport", ">= 5.0.1.rc1"

s.add_development_dependency "railties", "> 5.0.1.x"
s.add_development_dependency "railties", ">= 5.0.1.rc1"

if defined?(JRUBY_VERSION)
s.add_development_dependency "jdbc-sqlite3"
Expand Down

0 comments on commit 932aef1

Please sign in to comment.