diff options
author | Ryan Bigg <git@ryanbigg.com> | 2015-03-31 11:41:16 +1100 |
---|---|---|
committer | Ryan Bigg <git@ryanbigg.com> | 2015-03-31 11:41:16 +1100 |
commit | b6bf58c2201761c073876b91249427107e111bdc (patch) | |
tree | 925128ec76fcdc198a7717629f2dfc159d02325f | |
parent | f32b6e243a1b84312bd72618454f79c9878beb19 (diff) | |
download | rails-b6bf58c2201761c073876b91249427107e111bdc.tar.gz rails-b6bf58c2201761c073876b91249427107e111bdc.tar.bz2 rails-b6bf58c2201761c073876b91249427107e111bdc.zip |
Require Module#delegate core ext in ActiveModel::Naming
-rw-r--r-- | activemodel/lib/active_model/naming.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/naming.rb b/activemodel/lib/active_model/naming.rb index 22010b517c..1f1749af4e 100644 --- a/activemodel/lib/active_model/naming.rb +++ b/activemodel/lib/active_model/naming.rb @@ -1,6 +1,7 @@ require 'active_support/core_ext/hash/except' require 'active_support/core_ext/module/introspection' require 'active_support/core_ext/module/remove_method' +require 'active_support/core_ext/module/delegation' module ActiveModel class Name |