search for: wheneverize

Displaying 2 results from an estimated 2 matches for "wheneverize".

2012 Jul 04
1
How to use wheneverize gem
Hi all i''m trying to use wheneverize gem to schedule my mails and to run a specific file in controller.i tried but unable to send mails. i am using rails 2.3.8 and ruby 1.8.7 . ive followed the https://github.com/javan/whenever this link Thanks in advance -- You received this message because you are subscribed to the Google Grou...
2010 Jun 03
7
Scheduled tasks in Rails: Cron + wget = Best solution?
Hi there, do you agree that for having scheduled tasks in Rails, the leanest solution is the following? - Create a controller with an action for each task - Implement the logic of the task as controller code - Set up a cron job at the OS level that uses wget to invoke the URL of this controller/action at the appropriate time intervals Advantages: 1) full access to all your Rails objects just as