class Timer::Dummy

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

Public Instance Methods

start() { || ... } click to toggle source
# File lib/facets/timer.rb, line 193
def start
  if block_given? then
    yield
  else
    time_limit()
  end
end
stop() click to toggle source
# File lib/facets/timer.rb, line 201
def stop
  false
end