Skip to content

Commit 2da9def

Browse files
lucasmazzacupakromer
authored andcommitted
Relax rails dependency constraint to support the 4.2.x releases.
The previous constraint would only go as up as `4.2.0`, thus making `rspec-rails` incompatible with any of the patch releases of the rails 4.2.x series.
1 parent 1398549 commit 2da9def

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rspec-rails.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Gem::Specification.new do |s|
2727
s.cert_chain = [File.expand_path('~/.gem/rspec-gem-public_cert.pem')]
2828
end
2929

30-
s.add_runtime_dependency(%q<activesupport>, [">= 3.0", "<= 4.2"])
31-
s.add_runtime_dependency(%q<actionpack>, [">= 3.0", "<= 4.2"])
32-
s.add_runtime_dependency(%q<railties>, [">= 3.0", "<= 4.2"])
30+
s.add_runtime_dependency(%q<activesupport>, [">= 3.0", "< 4.3"])
31+
s.add_runtime_dependency(%q<actionpack>, [">= 3.0", "< 4.3"])
32+
s.add_runtime_dependency(%q<railties>, [">= 3.0", "< 4.3"])
3333
%w[core expectations mocks support].each do |name|
3434
if RSpec::Rails::Version::STRING =~ /[a-zA-Z]+/ # prerelease builds
3535
s.add_runtime_dependency "rspec-#{name}", "= #{RSpec::Rails::Version::STRING}"

0 commit comments

Comments
 (0)