search for: cron_grac

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

2006 Jan 07
3
RailsCron 0.1 plugin
...th threading (Ruby, native to be added later). STARTING & STOPPING ================== RailsCron is started and stopped by Rake. List of Rake tasks: * cron_start -- Starts RailsCron as a daemon * cron_foreground -- Starts RailsCron in the foreground * cron_stop -- Graceful stop * cron_kill * cron_graceful -- Graceful restart * cron_status These commands are UNIX-oriented. Windows users can start with "ruby script\runner ''RailsCron.start''" and stop with Ctrl-C. I have no idea (or need) of how to make this a Windows service, but the patch would be welcome. The follo...
2006 Feb 23
5
Q: Where to put a periodic updater?
Hello, I need to put a script in place for updating a local database with a remote resource periodically. It should be started alongside the server (or inside it, whatever) and be run as long as the server running my rails app is up an running. Any thoughts on how to accomplish this? I have thought of editing the environment.rb file and placing the call to the script trigger there, but I wonder