Yields:
Yield Parameters:
the object that the method was called on
32 33 34 35
# File 'lib/ext.rb', line 32 def tap yield self self end
25 26 27 28 29 30
# File 'lib/ext.rb', line 25 def verbose $verbose = true yield ensure $verbose = false end