Class: Object

Inherits:
BasicObject
Defined in:
lib/thread_storm/active_support.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

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

Yields:

  • (_self)

Yield Parameters:

  • _self (Object)

    the object that the method was called on



21
22
23
24
# File 'lib/thread_storm/active_support.rb', line 21

def tap
  yield(self)
  self
end