method_missing(m, *args, &block)
public
Handles the magic of delegation through __getobj__.
# File lib/delegate.rb, line 155
def method_missing(m, *args, &block)
target = self.__getobj__
unless target.respond_to?(m)
super(m, *args, &block)
end
target.__send__(m, *args, &block)
end