class Rufus::Scheduler::CronJob

def next_time_from(time)

def next_time_from(time)
  if @first_at == nil || @first_at <= time
    @cron_line.next_time(time)
  else
    @first_at
  end
end