class Rufus::Scheduler::SchedulerCore

def in(t, s=nil, opts={}, &block)


will order an espresso (well sort of) in 20 minutes.

end
puts "order ristretto"
scheduler.in '20m' do

Schedules a job in a given amount of time.
def in(t, s=nil, opts={}, &block)
  add_job(InJob.new(self, t, combine_opts(s, opts), &block))
end