class Fugit::Cron::TimeCursor

def inc_day

def inc_day
  inc((24 - @t.hour) * 3600 - @t.min * 60 - @t.sec)
  return if @t.hour == 0
  if @t.hour < 12
    begin
      @t = ::EtOrbi.make(@t.year, @t.month, @t.day, @t.zone)
    rescue ::TZInfo::PeriodNotFound
      inc((24 - @t.hour) * 3600)
    end
  else
    inc((24 - @t.hour) * 3600)
  end
end