mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
8c16ae46e8
* support latest Ruby 2.1 * support latest Ruby 2.2 * support latest Rails 4.2 * drop testing of Ruby 2.0 * drop testing of Rails 4.0 * fix JRuby support
15 lines
274 B
Ruby
15 lines
274 B
Ruby
# These are the versions of Rails we want to test against.
|
|
appraise 'rails3.2' do
|
|
gem 'rails', '~> 3.2.21'
|
|
gem 'sass-rails'
|
|
end
|
|
|
|
appraise 'rails4.1' do
|
|
gem 'rails', '~> 4.1.9'
|
|
gem 'sass-rails'
|
|
gem 'spring'
|
|
end
|
|
|
|
appraise 'rails4.2' do
|
|
gem 'rails', '~> 4.2.0'
|
|
end
|