Simple Calendar =============== This is a small gem for creating a quick and clean table calendar. Theming is up to you, but it works nicely with Twitter Bootstrap. Installation ------------ Just add this into your Gemfile followed by a bundle install: gem "simple_calendar", "~> 0.0.1" Usage ----- Here we have a model called Event with the start_time attribute that we will be using with simple_calendar. class Event < ActiveRecord::Base has_calendar end We query the events we want to display as usual, and then render the calendar in the view like so: <%= calendar @events do |event| %>
<%= link_to event.title, event %>
<% end %> When the calendar is rendering, it yields to the block to allow you to render whatever you like for the item. In this example, I use the title attribute on the event with a link to the event. has_calendar has options that can be passed to it for configuration: has_calendar :start_time => :my_start_column def whatever title + " ohai" end Start_time is the field for the start time of the event.