Flowdock
method

delegating_block

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: Delegator
delegating_block(mid) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/delegate.rb, line 346
def Delegator.delegating_block(mid) # :nodoc:
  lambda do |*args, &block|
    target = self.__getobj__
    target.__send__(mid, *args, &block)
  end
end
Register or log in to add new notes.