mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
75d1f68d12
Ruby 2.1 and 2.2 are no longer maintained, and Rails 3.2 and 4.2 are no longer maintained, so I don't want to go out of our way to continue supporting them in FactoryBot 5+. Hooray for faster test runs!
19 lines
382 B
Ruby
19 lines
382 B
Ruby
# These are the versions of Rails we want to test against.
|
|
appraise 'rails4.2' do
|
|
gem 'rails', '~> 4.2.0'
|
|
end
|
|
|
|
appraise 'rails5.0' do
|
|
gem 'activerecord', '~> 5.0.0'
|
|
gem 'railties', '~> 5.0.0'
|
|
end
|
|
|
|
appraise 'rails5.1' do
|
|
gem 'activerecord', '~> 5.1.0'
|
|
gem 'railties', '~> 5.1.0'
|
|
end
|
|
|
|
appraise 'rails5.2' do
|
|
gem 'activerecord', '~> 5.2.0'
|
|
gem 'railties', '~> 5.2.0'
|
|
end
|