We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You should be able to use the :at option for hourly tasks as well, not just daily. For example:
every(1.hour, "ten.after.job", :at => "**:10")
The text was updated successfully, but these errors were encountered:
+1 for :at option on hour
Sorry, something went wrong.
Yes, that's needed.
At the moment I do it that way (it runs 24 clocks which is inefficient, but does the job):
[*'00'..'23'].each do |hr| every(1.day, "Task name", :at => "#{hr}:10") end
Accept "hour" specification with a single letter (like 8 or *). Fixed a…
57438ae
…damwiggins#2
No branches or pull requests
You should be able to use the :at option for hourly tasks as well, not just daily. For example:
The text was updated successfully, but these errors were encountered: