Object
# File lib/puppet/scheduler/timer.rb, line 9 def now Time.now end
# File lib/puppet/scheduler/timer.rb, line 3 def wait_for(seconds) if seconds > 0 sleep(seconds) end end