diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2015-03-30 19:56:57 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2015-03-30 19:56:57 -0500 |
commit | 151aa690a2f62e2daee106079e88ff43cd770611 (patch) | |
tree | 01352b58826db1f662cf8d22ab6e48d84205a200 /activemodel/lib | |
parent | a4089576136aaec1366f87922ea9aebc03bfe3b1 (diff) | |
parent | b6bf58c2201761c073876b91249427107e111bdc (diff) | |
download | rails-151aa690a2f62e2daee106079e88ff43cd770611.tar.gz rails-151aa690a2f62e2daee106079e88ff43cd770611.tar.bz2 rails-151aa690a2f62e2daee106079e88ff43cd770611.zip |
Merge pull request #19594 from radar/require-module-delegation
Require Module#delegate core ext in ActiveModel::Naming
Diffstat (limited to 'activemodel/lib')
-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 |