diff options
author | Arun Agrawal <arun@fromjaipur.com> | 2011-08-15 19:13:25 +0530 |
---|---|---|
committer | Arun Agrawal <arun@fromjaipur.com> | 2011-08-15 19:13:25 +0530 |
commit | 10b99f2826c6baab0db9c9c57ddf600fe78356e5 (patch) | |
tree | b82359b41b55a893db0673efc4de4d31e4c71c29 | |
parent | 27da0c5480ecf6b020e73f994d3240ae15b0646b (diff) | |
download | rails-10b99f2826c6baab0db9c9c57ddf600fe78356e5.tar.gz rails-10b99f2826c6baab0db9c9c57ddf600fe78356e5.tar.bz2 rails-10b99f2826c6baab0db9c9c57ddf600fe78356e5.zip |
Need to include public_send
-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) |