= private = protected
on()
Start tracing
Tracer.on # code to trace here Tracer.off
You can also pass a block:
Tracer.on { # trace everything in this block }
# File lib/tracer.rb, line 225 def Tracer.on if block_given? Single.on{yield} else Single.on end end