Reputation: 2444
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.
Upvotes: 5
Views: 685
Reputation: 27745
Or do the same check from the scheduler task
test `date +%w` -eq 2 && rake ...
Again 0: Sunday ... 6: Saturday
Upvotes: 5
Reputation: 40277
Check if today is a monday and don't run your task otherwise.
Time.now.wday
=> 2
0: Sunday .. 6: Saturday
Upvotes: 7