mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
3064f4a4ac
* Update callbacks spec so column types reflect assignment Rails 4.2 introduces type coercion on attribute assignment instead of it occurring after persisting the record.
15 lines
276 B
Ruby
15 lines
276 B
Ruby
appraise "3.2" do
|
|
gem "activerecord", git: 'https://github.com/rails/rails.git', branch: '3-2-stable'
|
|
end
|
|
|
|
appraise '4.0' do
|
|
gem 'activerecord', "~> 4.0.1"
|
|
end
|
|
|
|
appraise '4.1' do
|
|
gem 'activerecord', "~> 4.1.1"
|
|
end
|
|
|
|
appraise '4.2' do
|
|
gem 'activerecord', "~> 4.2.1"
|
|
end
|