Test activerecord ~> 4.0.0 in active_record_40 gemfile

This changes from using '>=' which would install the latest version of
activerecord available at the time of running `bundle install`.
This commit is contained in:
Zachary Scott 2014-02-24 02:24:02 -08:00
parent 377861df00
commit b15e6e1b49
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
source 'https://rubygems.org'
gem 'railties', '>= 4.0.0'
gem 'activerecord', '>= 4.0.0', :require => 'active_record'
gem 'railties', '~> 4.0.0'
gem 'activerecord', '~> 4.0.0', :require => 'active_record'
gem 'rspec-rails', '>= 2.0'
platforms :ruby, :rbx do