diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-08-15 06:46:59 -0700 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-08-15 06:46:59 -0700 |
commit | 4c743d9fceabc254a6e5e92412753b31fb0a24ff (patch) | |
tree | b82359b41b55a893db0673efc4de4d31e4c71c29 /activesupport/lib | |
parent | 27da0c5480ecf6b020e73f994d3240ae15b0646b (diff) | |
parent | 10b99f2826c6baab0db9c9c57ddf600fe78356e5 (diff) | |
download | rails-4c743d9fceabc254a6e5e92412753b31fb0a24ff.tar.gz rails-4c743d9fceabc254a6e5e92412753b31fb0a24ff.tar.bz2 rails-4c743d9fceabc254a6e5e92412753b31fb0a24ff.zip |
Merge pull request #2534 from arunagw/public_send_require
Need to include public_send
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/delegation.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb index fe17359a24..72988fa6b5 100644 --- a/activesupport/lib/active_support/core_ext/module/delegation.rb +++ b/activesupport/lib/active_support/core_ext/module/delegation.rb @@ -1,3 +1,4 @@ +require 'active_support/core_ext/object/public_send' class Module # Provides a delegate class method to easily expose contained objects' methods # as your own. Pass one or more methods (specified as symbols or strings) |