Timer::Dummy - Dummy Timer (i.e. no real time limit)
[Source]
# File lib/more/facets/timer.rb, line 248 248: def start 249: if block_given? then 250: yield 251: else 252: time_limit() 253: end 254: end
# File lib/more/facets/timer.rb, line 256 256: def stop 257: false 258: end
[Validate]