Class: Object

Inherits:
BasicObject
Defined in:
lib/chef/monkey_patches/object.rb

Instance Method Summary collapse

Instance Method Details

#tap {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:

  • _self (Object)

    the object that the method was called on



3
4
5
6
# File 'lib/chef/monkey_patches/object.rb', line 3

def tap
  yield self
  return self
end