diff options
author | Xavier Noria <fxn@hashref.com> | 2010-03-28 12:43:20 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-03-28 12:43:20 +0200 |
commit | 3b1c69d2dd2b24a29e4443d7dc481589320a3f3e (patch) | |
tree | 37bf8414e606154fdd5bb53871addc714bb71887 /activemodel | |
parent | 66d57d7ba83df52ff1e0485c89f6192c2f84c6b8 (diff) | |
download | rails-3b1c69d2dd2b24a29e4443d7dc481589320a3f3e.tar.gz rails-3b1c69d2dd2b24a29e4443d7dc481589320a3f3e.tar.bz2 rails-3b1c69d2dd2b24a29e4443d7dc481589320a3f3e.zip |
adds a few requires in active_model/dirty.rb
[#4284 state:committed]
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/dirty.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/dirty.rb b/activemodel/lib/active_model/dirty.rb index cb67ef7270..2d5acdfced 100644 --- a/activemodel/lib/active_model/dirty.rb +++ b/activemodel/lib/active_model/dirty.rb @@ -1,4 +1,7 @@ +require 'active_model/attribute_methods' +require 'active_support/concern' require 'active_support/hash_with_indifferent_access' +require 'active_support/core_ext/object/duplicable' module ActiveModel # <tt>ActiveModel::Dirty</tt> provides a way to track changes in your |