Rishav Rastogi
Rishav Rastogi

Reputation: 15482

Need WebCalendar like Functionality with Rails or Ruby

I need an end-to-end Calendar, Schedule Management Solution that integrates with my Rails Application.

I need it to be able to handle events, meetings, reminders, exports and imports etc.

Something Like WebCalendar is for Php.

I know there is a Google Calendar API available for Ruby but I am not sure if that's suitable for internal use.

Upvotes: 1

Views: 585

Answers (1)

Ariejan
Ariejan

Reputation: 11069

Ruby on Rails is a development framework. It's by no means a system (some call it CMS) that you can plug modules in that offer end-to-end functionality.

There are some good plugins and gems around, but none will truely offer you an out-of-the-box solution.

Of course, there are some gems that can help you along building a calendar app. I personally like Chronic for easy time usage. For the rest, the basic Ruby Time and DateTime classes and the extensions to it in Rails should be sufficient.

Upvotes: 2

Related Questions