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

Methods
Public Instance methods
start() {|| ...}
# File lib/facets/more/timer.rb, line 215
    def start
      if block_given? then
        yield
      else
        time_limit()
      end
    end
stop()
# File lib/facets/more/timer.rb, line 223
    def stop
      false
    end