mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
00cb2eabb1
* Remove gemfiles from version control to match same testing style as Clearance and Suspenders. * MiniTest does not need to be manually included as it is automatically included by Rails by default. * Add spring for Rails 4.1. * Disable Spring to get specs to pass on Rails 4.1. * Add therubyrhino for JRuby. * Remove old references to Rails 3. * Fix JRuby test where output is "1 runs", not "1 tests". * Remove Rails 3.0 reference to "turn".
16 lines
305 B
Ruby
16 lines
305 B
Ruby
# These are the versions of Rails we want to test against.
|
|
appraise 'rails3.2' do
|
|
gem 'rails', '~> 3.2.18'
|
|
gem 'sass-rails'
|
|
end
|
|
|
|
appraise 'rails4.0' do
|
|
gem 'rails', '~> 4.0.5'
|
|
gem 'sass-rails'
|
|
end
|
|
|
|
appraise 'rails4.1' do
|
|
gem 'rails', '~> 4.1.1'
|
|
gem 'sass-rails', '~> 4.0.3'
|
|
gem 'spring'
|
|
end
|