diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2009-03-20 01:13:24 +0000 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-03-20 01:13:24 +0000 |
commit | 93e2d378df5f599e3e48e74932f37e1c679f633e (patch) | |
tree | 5e56400dddc3c22ce9b1827546076d1a8c6e2b5b /activemodel | |
parent | 77acfefedf80a2c30f8a0f71b5b6d33d1b9fd144 (diff) | |
download | rails-93e2d378df5f599e3e48e74932f37e1c679f633e.tar.gz rails-93e2d378df5f599e3e48e74932f37e1c679f633e.tar.bz2 rails-93e2d378df5f599e3e48e74932f37e1c679f633e.zip |
Autload ActiveModel::Observing
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activemodel/lib/active_model.rb b/activemodel/lib/active_model.rb index e777351cea..9695ac7e3b 100644 --- a/activemodel/lib/active_model.rb +++ b/activemodel/lib/active_model.rb @@ -37,6 +37,7 @@ module ActiveModel end autoload :Base, 'active_model/base' + autoload :Observing, 'active_model/observing' autoload :Validations, 'active_model/validations' autoload :Errors, 'active_model/errors' autoload :DeprecatedErrorMethods, 'active_model/deprecated_error_methods' |