Closed babakgh closed 7 years ago
It would be nice if you merge the changes asap. we have a complaint from a customer, thanks
I wonder if minutes/hours with a leading zero are valid at all. According to the crontab specs they are not. see http://crontab.org also see this thread http://unix.stackexchange.com/questions/121692/cron-midnight-00-24-or-00-00
fixed in c5bb5e3a6a6b4b0cfb12effc14eb2d0da2d6155d lmk otherwise
@alpinweis , thats fine, thanks, can you please upload the binary Gem version 0.4.0
In Integer(): the leading zero leads Ruby to think it's octal, but 8 & 9 isn't valid in an octal number. https://www.ruby-forum.com/topic/62141
So in some of following expressions, it would raise errors
I fixed the issue by creating new method
Cronex::Utils.number
and changed allInteger()
with it