mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
402e6ed84c
This allows us to test factory_girl_rails against each minor release of Rails 3. To run the full suite, run $ bundle exec rake To view all the rake tasks Appraisal provides, run $ bundle exec rake -T appraisal
13 lines
218 B
Ruby
13 lines
218 B
Ruby
appraise "rails3.0" do
|
|
gem "rails", "~> 3.0.17"
|
|
end
|
|
|
|
appraise "rails3.1" do
|
|
gem "rails", "~> 3.1.8"
|
|
gem "sqlite3", ">= 1.3.4"
|
|
end
|
|
|
|
appraise "rails3.2" do
|
|
gem "rails", "~> 3.2.8"
|
|
gem "sqlite3", ">= 1.3.4"
|
|
end
|