# SimpleCalendar::Timeslot This is an extension of the rubygem `simple_calendar` by Chris Oliver aka excid3. It allows for simple calendar creation in a Ruby on Rails app with an timeslot representation of events in a 24h day. This helps to visually grasps the length of events and the time between them. In case of overlapping, the respective events are shown side-by-side. It is also possible to categorise events in buckets according to some function, then they will be shown next to one another in the 24h timeline. Horizontal and vertical layout is selectable via options, just like many other ones. Horizontal example ![Horizontal Calendar](img/simple_calendar-timeslot_horizontal.png) Vertical example ![Vertical Calendar](img/simple_calendar-timeslot_vertical.png) ## Installation Add this line to your application's Gemfile: ```ruby gem 'simple_calendar-timeslot' ``` And then execute: $ bundle install Or install it yourself as: $ gem install simple_calendar-timeslot **Important** Then include the stylesheet in your rails app. If you an `application.css` file, include the following: ```ruby *= require simple_calendar-timeslot ``` If you use an SCSS file (`application.scss`), add the following line instead: ```ruby @import 'simple_calendar-timeslot'; ``` ## Usage TODO: Write usage instructions here ```erb <%= timeslot_calendar(events: @events, number_of_days: 2, px_per_minute: 1.5, orientation: :horizontal, horizontal_height_px: 250, # display_grid: false, # display_bucket_title: :event_type, # bucket_title_size: 30, # grid_width: "20px", # split_by_type: :event_type ) do |event| %>