I\'m using rufus-scheduler to run a process every day from a rails server. For testing purposes, let\'s say every 5 minutes. My code looks like this:
Running rufus-scheduler in a Rails 3 app withou开发者_StackOverflowt any problem. But since my app is running in cluster of nodes, app1.myapp.com - app2.myapp.com,
I am running a rails app that uses rufus-scheduler to send out a daily e-mail to all users at noon, however, it currently sends it out at noon for the apps timezone \"Taipei\".
Total newbie at cronjobs and that kinda stuff, never done it before, so now I tried to get my hands dirty using whenever as a plugin, after seeing it on RailsCasts.
I am writing an app that is utilizing the Rufus-Scheduler Ruby Gem. This is what a returned hash looks like when display ALL running jobs...
Kinda new to Rails, so please cope with me. What i\'m doing now is background processing some Ruby code use Resque. To get the Rescque rake task started, I\'ve been using (on heroku), I have a resque.
The schedule is running but errors \"undefined method \'do_something\'\". What is not right? Using rails 3.
I\'m trying to run a task every two weeks starting today, but in my tests, its seems that when rufus scheduler starts up, it tries to run the task however many times it has \'missed\' until it catches
i use Rufus::Scheduler to schedule a task, the code is listed bel开发者_JAVA技巧ow: class Scheduler
Am trying to use rufus-scheduler to check every minute or so to see if there are jobs ready to be placed in the delayed_job queue.