Skip to content

Commit

Permalink
Remove Module#delegate!
Browse files Browse the repository at this point in the history
  • Loading branch information
dasch committed Apr 12, 2012
1 parent 402a119 commit 5fb6bd8
Showing 1 changed file with 0 additions and 52 deletions.
52 changes: 0 additions & 52 deletions activesupport/lib/active_support/core_ext/module/delegation.rb
Expand Up @@ -156,56 +156,4 @@ def #{method_prefix}#{method}(#{definition}) # def customer_name(*args, &
end end
end end
end end

def delegate!(*methods)
ActiveSupport::Deprecation.warn('Delegating to non-public methods is deprecated.', caller)

options = methods.pop
unless options.is_a?(Hash) && to = options[:to]
raise ArgumentError, "Delegation needs a target. Supply an options hash with a :to key as the last argument (e.g. delegate :hello, :to => :greeter)."
end
prefix, to, allow_nil = options[:prefix], options[:to], options[:allow_nil]

if prefix == true && to.to_s =~ /^[^a-z_]/
raise ArgumentError, "Can only automatically set the delegation prefix when delegating to a method."
end

method_prefix =
if prefix
"#{prefix == true ? to : prefix}_"
else
''
end

file, line = caller.first.split(':', 2)
line = line.to_i

methods.each do |method|
method = method.to_s

if allow_nil
module_eval(<<-EOS, file, line - 2)
def #{method_prefix}#{method}(*args, &block) # def customer_name(*args, &block)
if #{to} || #{to}.respond_to?(:#{method}) # if client || client.respond_to?(:name)
#{to}.__send__(:#{method}, *args, &block) # client.__send__(:name, *args, &block)
end # end
end # end
EOS
else
exception = %(raise "#{self}##{method_prefix}#{method} delegated to #{to}.#{method}, but #{to} is nil: \#{self.inspect}")

module_eval(<<-EOS, file, line - 1)
def #{method_prefix}#{method}(*args, &block) # def customer_name(*args, &block)
#{to}.__send__(:#{method}, *args, &block) # client.__send__(:name, *args, &block)
rescue NoMethodError # rescue NoMethodError
if #{to}.nil? # if client.nil?
#{exception} # # add helpful message to the exception
else # else
raise # raise
end # end
end # end
EOS
end
end
end
end end

0 comments on commit 5fb6bd8

Please sign in to comment.