aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-07-18 16:06:21 +0100
committerJon Leighton <j@jonathanleighton.com>2011-08-15 12:38:38 +0100
commit8bba95f293714283f6fc30cb213af54811cccff3 (patch)
tree57dc3f0455622ae001a45f20e4dbf80cee19c071 /activesupport/lib/active_support/core_ext
parent6f4b405250157c76fea86c42c8b0854ca4a3c4b8 (diff)
downloadrails-8bba95f293714283f6fc30cb213af54811cccff3.tar.gz
rails-8bba95f293714283f6fc30cb213af54811cccff3.tar.bz2
rails-8bba95f293714283f6fc30cb213af54811cccff3.zip
Just do the method call directly in Module#delegate, if we can (we cannot for method names ending in '='). Two reasons: 1) it's faster, see https://gist.github.com/1089783 and 2) more importantly, delegate should not allow you to accidentally call private or protected methods.
Diffstat (limited to 'activesupport/lib/active_support/core_ext')
-rw-r--r--activesupport/lib/active_support/core_ext/module/delegation.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb
index bf7e009290..8655288bc3 100644
--- a/activesupport/lib/active_support/core_ext/module/delegation.rb
+++ b/activesupport/lib/active_support/core_ext/module/delegation.rb
@@ -123,6 +123,9 @@ class Module
line = line.to_i
methods.each do |method|
+ method = method.to_s
+ call = (method[-1..-1] == '=') ? "public_send(:#{method}, " : "#{method}("
+
on_nil =
if allow_nil
'return'
@@ -132,7 +135,7 @@ class Module
module_eval(<<-EOS, file, line - 5)
def #{method_prefix}#{method}(*args, &block) # def customer_name(*args, &block)
- #{to}.__send__(#{method.inspect}, *args, &block) # client.__send__(:name, *args, &block)
+ #{to}.#{call}*args, &block) # client.name(*args, &block)
rescue NoMethodError # rescue NoMethodError
if #{to}.nil? # if client.nil?
#{on_nil} # return # depends on :allow_nil