mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
77d707d2c7
This partially addresses #293. Since rubocop generated quite a few todos, the commits addressing them are split up into a few different PRs that cover different files.
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
|