From 3e2606f4884fb3afd5261ee3e11952f62e6fd0da Mon Sep 17 00:00:00 2001 From: Lucas Mazza Date: Fri, 20 Feb 2015 22:56:10 -0200 Subject: [PATCH] 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. --- rspec-rails.gemspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rspec-rails.gemspec b/rspec-rails.gemspec index 770bbcbafb..0e522fd677 100644 --- a/rspec-rails.gemspec +++ b/rspec-rails.gemspec @@ -27,9 +27,9 @@ Gem::Specification.new do |s| s.cert_chain = [File.expand_path('~/.gem/rspec-gem-public_cert.pem')] end - s.add_runtime_dependency(%q, [">= 3.0", "<= 4.2"]) - s.add_runtime_dependency(%q, [">= 3.0", "<= 4.2"]) - s.add_runtime_dependency(%q, [">= 3.0", "<= 4.2"]) + s.add_runtime_dependency(%q, [">= 3.0", "< 4.3"]) + s.add_runtime_dependency(%q, [">= 3.0", "< 4.3"]) + s.add_runtime_dependency(%q, [">= 3.0", "< 4.3"]) %w[core expectations mocks support].each do |name| if RSpec::Rails::Version::STRING =~ /[a-zA-Z]+/ # prerelease builds s.add_runtime_dependency "rspec-#{name}", "= #{RSpec::Rails::Version::STRING}"