lib/fugit/cron.rb in fugit-1.1.7 vs lib/fugit/cron.rb in fugit-1.1.8

- old
+ new

@@ -83,10 +83,10 @@ def inc_month y = @t.year m = @t.month + 1 if m == 13; m = 1; y += 1; end - @t = ::EtOrbi.make(y, m) + @t = ::EtOrbi.make(y, m, @t.zone) self end def inc_day; inc((24 - @t.hour) * 3600 - @t.min * 60 - @t.sec); end def inc_hour; inc((60 - @t.min) * 60 - @t.sec); end def inc_min; inc(60 - @t.sec); end