cronin

Simple gem to find out when given cron task should be executed. It support only basic cron entries:

Usage:

task   = Cronin::CronTask.new('* * * * *')
start  = Time.mktime(2011,1,1,12,12)
finish = Time.mktime(2011,1,1,12,12)
task.executions(start,finish)

=> [Sat Jan 01 12:12:00 0100 2011, Sat Jan 01 12:13:00 0100 2011, Sat Jan 01 12:14:00 0100 2011, Sat Jan 01 12:15:00 0100 2011]

Contributing to cronin

Copyright © 2011 innov8on.com. See LICENSE.txt for further details.