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