Project

parse-cron

0.21
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Parses cron expressions and calculates the next occurence
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.6.0
 Project Readme

Parse-Cron

Parse crontab syntax to determine scheduled run times Build Status

The goal of this gem is to parse a crontab timing specification and determine when the job should be run. It is not a scheduler, it does not run the jobs.

API example

cron_parser = CronParser.new('30 * * * *')

# Next occurrence
next_time = cron_parser.next(Time.now)

# Last occurrence
most_recent_time = cron_parser.last(Time.now)