mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
d5a3dddb46
Why? With Rails' upcoming release, test against the latest beta of Rails 5.
19 lines
342 B
Ruby
19 lines
342 B
Ruby
appraise "3.2" do
|
|
gem "activerecord", git: 'https://github.com/rails/rails.git', branch: '3-2-stable'
|
|
end
|
|
|
|
appraise '4.0' do
|
|
gem 'activerecord', "~> 4.0.13"
|
|
end
|
|
|
|
appraise '4.1' do
|
|
gem 'activerecord', "~> 4.1.14"
|
|
end
|
|
|
|
appraise '4.2' do
|
|
gem 'activerecord', "~> 4.2.5.1"
|
|
end
|
|
|
|
appraise '5.0' do
|
|
gem 'activerecord', "~> 5.0.0.beta2"
|
|
end
|