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
    def start
      if block_given? then
        yield
      else
        time_limit()
      end
    end

[Source]

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

[Validate]