class Fugit::Cron::TimeCursor

def inc_month

def inc_month
  y = @t.year
  m = @t.month + 1
  if m == 13; m = 1; y += 1; end
  @t = ::EtOrbi.make(y, m, @t.zone)
  self
end