class Rufus::Scheduler::OneTimeJob

def set_next_time(trigger_time, is_post=false)


There is no next_time for one time jobs, hence the false.
def set_next_time(trigger_time, is_post=false)
  @next_time = is_post ? nil : false
end