class Rufus::CronJob

def next_time (from=Time.now)


what will be the next time. Defaults to now.
'from' is used to specify the starting point for determining

supposed to "fire".
Returns a Time instance : the next time this cron job is
def next_time (from=Time.now)
  @cron_line.next_time(from)
end