My site is hosted on Heroku, I need to run a task once a week. The scheduler addon only allows me to run tasks once a day ... anyway I can change that?
My site is written in Ruby on Rails.
Check if today is a monday and don't run your task otherwise.
Time.now.wday
=> 2
0: Sunday .. 6: Saturday
Or do the same check from the scheduler task
test `date +%w` -eq 2 && rake ...
Again 0: Sunday ... 6: Saturday
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With