What are the current best practices in the Rails world for displaying a calendar month view with event items bound to the days in the month (like in Backpack or Google Calendar, for example)?
I don't need anything like fancy stuff like drag and drop support. I'm just looking for code to let me get a list of events in my controller and somehow expose them as entries in a monthly calendar display view (maybe with class names on the HTML elements to allow me to display different types of events differently, or maybe to display events from multiple calendars).
There's the Dynamic Calendar Helper that was created a few years ago, which very well might still work just fine for me, but I'm just wondering if I should be looking at other plugins, too.
Other possibilities I've found so far:
- A few possible contenders (judging from their descriptions) on GitHub
- Joyent Connector, which is now open source, has calendar capabilities
So, can you point me in the right direction as to what folks are using to output monthly calendars with data these days?