lib/fugit/cron.rb in fugit-1.4.3 vs lib/fugit/cron.rb in fugit-1.4.4
- old
+ new
@@ -90,10 +90,11 @@
self
end
def inc_day
inc((24 - @t.hour) * 3600 - @t.min * 60 - @t.sec)
- inc( - @t.hour * 3600) if @t.hour != 0 # compensate for entering DST
+ #inc( - @t.hour * 3600) if @t.hour != 0 # compensate for entering DST
+ inc( - @t.hour * 3600) if @t.hour > 0 && @t.hour < 7
end
def inc_hour
inc((60 - @t.min) * 60 - @t.sec)
end
def inc_min