I want to find a ruby gem for my project to work with reccuring events that matches following requirements:
- can process patterns like "Weekly on Tuesday and Wednessday", or "Monthly on the last Tuesday"
- can compute next occurence
- can serialize/deserialize a pattern into string to store in database
- serialization has stable format (e.i. it will be able to load even after upgrading)
- work at least with following pattern components: Time, Day Of Week, Date of Month, nth day of week in month;
- can repeat daily, weekly, monthly or with interval of n days, weeks or months
- can represent a pattern in natural English language
- can parse a pattern from English (optional)
- can export to some popular format like iCal (optional)
- can integrate with other gems/systems for calendar and task management (optional)
- support of Active Record - parameter parsing, validation (optional)
- has enough tests, and few bugs, more then 1 user :)
- has reasonable performance
I found two relevant candidates:
- Tickle - the good is that it can parse English.
- Ice_Cube(+Schedule-Attributes) - the good is that it most popular and can export to iCal
Could you suggest a gem and describe positive and negative experiences with it?
Maybe also you could add some relevant criteria/requirements, that i've not mentioned.
P.S. Pease someone with 1,5K+ add recurring_events tag. Thanks