I have simple Event model (title, date, user) And I created Events Calendar by months (gem \'watu_table_builder\'). I need the feature to create repeating events. I figured
You won't be able to query the database for the Event's serialized (yaml) schedule to filter occurrences by month, if that's what you're trying to do. If you need to do that, then you'll have to store the schedule.occurrences
as rows in a separate table join: that's what I do in our app.
I might have more details to add to this answer later, meanwhile have a look at my schedule_attributes gem if it helps you build the selectors for building schedules from user input (I still need to update docs and release it...)