Skip to content

Commit

Permalink
Make rails gem deps work for anything < 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Dec 1, 2010
1 parent eb7c5dc commit c89a5ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rspec-rails.gemspec
Expand Up @@ -57,9 +57,9 @@ Gem::Specification.new do |s|
**************************************************
}

s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0"])
s.add_runtime_dependency(%q<actionpack>, [">= 3.0.0"])
s.add_runtime_dependency(%q<railties>, [">= 3.0.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"])
s.add_runtime_dependency "rspec", "~> #{RSpec::Rails::Version::STRING.split('.')[0..1].concat(['0']).join('.')}"
end

0 comments on commit c89a5ac

Please sign in to comment.