def delegate(*methods)
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
if options[:prefix] == true && options[:to].to_s =~ /^[^a-z_]/
raise ArgumentError, "Can only automatically set the delegation prefix when delegating to a method."
end
prefix = options[:prefix] && "#{options[:prefix] == true ? to : options[:prefix]}_"
allow_nil = options[:allow_nil] && "#{to} && "
methods.each do |method|
module_eval("def \#{prefix}\#{method}(*args, &block) # def customer_name(*args, &block)\n\#{allow_nil}\#{to}.__send__(\#{method.inspect}, *args, &block) # client && client.__send__(:name, *args, &block)\nend # end\n", "(__DELEGATION__)", 1)
end
end