Ringo Blancke
Ringo Blancke

Reputation: 2444

Run task once a week on Heroku

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

Answers (2)

hurrymaplelad
hurrymaplelad

Reputation: 27745

Or do the same check from the scheduler task

test `date +%w` -eq 2 && rake ...

Again 0: Sunday ... 6: Saturday

Upvotes: 5

Jesse Wolgamott
Jesse Wolgamott

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

Related Questions