public
Description: RCron is schedule executor like a cron in ruby.
Homepage:
Clone URL: git://github.com/func09/rcron.git
func09 (author)
Thu Jun 04 01:11:32 -0700 2009
commit  29ea8762a3dd274c983d2ab04e3ad022702b9637
tree    8f34bfe5cb9f5973a18d2c32fe9c1fdaa5d98b61
parent  3e2d5eecac8131a9c56584d759a32920ec11c741
rcron /
name age message
file .gitignore Wed Jun 03 07:45:53 -0700 2009 Add .gitignore [func09]
file LICENSE Wed Jun 03 07:35:52 -0700 2009 first commit [func09]
file README.rdoc Thu Jun 04 01:11:32 -0700 2009 READMEを修正 実行ファイルの使い方を記述した [func09]
file Rakefile Wed Jun 03 07:35:52 -0700 2009 first commit [func09]
file TODO Wed Jun 03 07:35:52 -0700 2009 first commit [func09]
directory bin/ Thu Jun 04 00:42:21 -0700 2009 実装をライブラリに移動した サンプルコードからlib/以下のクラスに移動 実行ファイルの作成 [func09]
directory examples/ Thu Jun 04 00:59:37 -0700 2009 サンプルをちと修正 [func09]
directory lib/ Thu Jun 04 00:58:59 -0700 2009 ジョブを実行するか判定するようになった とりあえず*と数値は理解した [func09]
directory spec/ Wed Jun 03 08:55:30 -0700 2009 RSpecでBDDする準備 [func09]
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