Class Timer::Dummy
In: lib/more/facets/timer.rb
Parent: self

Timer::Dummy - Dummy Timer (i.e. no real time limit)

Methods

start   stop  

Public Instance methods

[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

[Source]

     # File lib/more/facets/timer.rb, line 256
256:     def stop
257:       false
258:     end

[Validate]