1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/Appraisals
Joshua Clayton ff0e6fb6c0 Fix Appraisal dependencies and get suite green
The twiddle-wakka specifying only major and minor (not tiny) versions
will grab latest minor, which ended up being 3.2 for all versions of
Rails supported. This ensures that when we report supporting Rails 3.0,
3.1, and 3.2, we actually test against those versions.

It also backports ActiveSupport::Notifications.subscribed, which was
added in 3.2.

Closes #367
2012-05-03 00:36:58 -04:00

11 lines
167 B
Ruby

appraise "3.0" do
gem "activerecord", "~> 3.0.0"
end
appraise "3.1" do
gem "activerecord", "~> 3.1.0"
end
appraise "3.2" do
gem "activerecord", "~> 3.2.0"
end