Skip to content

Commit

Permalink
Restore the dependencies on the rails gems to ~> 3.0, which includes any
Browse files Browse the repository at this point in the history
rails < 4.0.

This reverts commit 7d4c1fc.
  • Loading branch information
dchelimsky committed May 6, 2011
1 parent 58b7d20 commit 90dff20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion features/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

* Bug fixes
* Fix load order issue w/ Capybara (oleg dashevskii)
* Relax the dependencies on rails gems to >= 3.0 (Joel Moss)
* Fix monkey patches that broke due to internal changes in rails-3.1.0.beta1

### 2.6.0.rc4 / 2011-05-01
Expand Down
6 changes: 3 additions & 3 deletions rspec-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"

s.add_runtime_dependency(%q<activesupport>, [">= 3.0"])
s.add_runtime_dependency(%q<actionpack>, [">= 3.0"])
s.add_runtime_dependency(%q<railties>, [">= 3.0"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0"])
s.add_runtime_dependency(%q<actionpack>, ["~> 3.0"])
s.add_runtime_dependency(%q<railties>, ["~> 3.0"])
if RSpec::Rails::Version::STRING =~ /[a-zA-Z]+/
s.add_runtime_dependency "rspec", "= #{RSpec::Rails::Version::STRING}"
else
Expand Down

0 comments on commit 90dff20

Please sign in to comment.