public
Description: RCron is schedule executor like a cron in ruby.
Homepage:
Clone URL: git://github.com/func09/rcron.git
rcron /
name age message
file .gitignore Loading commit data...
file LICENSE
file README.rdoc
file Rakefile
file TODO
directory bin/
directory examples/
directory lib/
directory spec/
README.rdoc

rcron

A gem that provides…

Example

 # sample_cron.rb
 rcron do

   job '* * * * *' do
     # do something ...
   end

   job '10 */4 * * *' do
     # do something ...
   end

 end

 # command line..
 rcron sample_cron.rb