public
Description: A plugin for creating psuedo-scheduled jobs in Ruby on Rails.
Homepage: http://douglasfshearer.com/blog/cron-jobs-in-ruby-on-rails
Clone URL: git://github.com/dougal/daemon_generator.git
daemon_generator / README
100644 14 lines (10 sloc) 0.482 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Daemon Generator
================
 
To get yourself rolling:
> sudo gem install daemons
> ./script/generate daemon <name>
 
Then insert your code in the lib/daemons/<name>.rb stub. All pid's and logs will live in the normal log/ folder. This helps to make things Capistrano friendly.
 
Individual control script:
> ./lib/daemons/<name>_ctl [start|stop|restart]
 
App-wide control script (I add this to my capistrano recipe's after_restart task):
> ./script/daemons [start|stop|restart]