Skip to content

Commit

Permalink
Merge pull request #1318 from lucasmazza/lm-rails-4-2-1
Browse files Browse the repository at this point in the history
Relax `rails` dependency constraint to support the `4.2.x` releases.
  • Loading branch information
cupakromer committed Feb 21, 2015
2 parents 515ed7f + 3e2606f commit b541ac2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rspec-rails.gemspec
Expand Up @@ -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<activesupport>, [">= 3.0", "<= 4.2"])
s.add_runtime_dependency(%q<actionpack>, [">= 3.0", "<= 4.2"])
s.add_runtime_dependency(%q<railties>, [">= 3.0", "<= 4.2"])
s.add_runtime_dependency(%q<activesupport>, [">= 3.0", "< 4.3"])
s.add_runtime_dependency(%q<actionpack>, [">= 3.0", "< 4.3"])
s.add_runtime_dependency(%q<railties>, [">= 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}"
Expand Down

0 comments on commit b541ac2

Please sign in to comment.