func09 / rcron
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
29ea876
rcron /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Jun 03 07:45:53 -0700 2009 | |
| |
LICENSE | Wed Jun 03 07:35:52 -0700 2009 | |
| |
README.rdoc | Thu Jun 04 01:11:32 -0700 2009 | |
| |
Rakefile | Wed Jun 03 07:35:52 -0700 2009 | |
| |
TODO | Wed Jun 03 07:35:52 -0700 2009 | |
| |
bin/ | Thu Jun 04 00:42:21 -0700 2009 | |
| |
examples/ | Thu Jun 04 00:59:37 -0700 2009 | |
| |
lib/ | Thu Jun 04 00:58:59 -0700 2009 | |
| |
spec/ | Wed Jun 03 08:55:30 -0700 2009 |
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
