0.0
No commit activity in last 3 years
No release in over 3 years
Use FullCalendar in asset pipeline with ease
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0

Runtime

 Project Readme

Fullcalendar Ruby Gem

This gem is a fork of fullcalendar updating it to last version of FullCalendar (4.2)

This gem just includes fullcalendar and scheduler as an asset in rails applications or other ruby frameworks Fullcaledar-scheduler is not free for commercial use, so make sure you have a valid license to use scheduler.

Installation

Fullcalendar JavaScript depends on jQuery and moment js. If you're using Rails 5.1+, add the jquery-rails gem to your Gemfile:

gem 'jquery-rails'
gem 'momentjs-rails'

Add this line to your application's Gemfile:

gem 'full_calendar'

And then execute:

$ bundle

Or install it yourself as:

$ gem install full_calendar

Install generator

command

rails g fullcalendar:install

this generator will:

    1. append //= require calendar add app/assets/javascripts/application.js
    1. append *= require calendar add app/assets/stylesheets/application.css
    1. create calendar.js in app/assets/javascripts/
    1. create calendar.scss in app/assets/stylesheets/

Manual install

JavaScripts

Include the JavaScript in your app/assets/javascripts/application.js:

//= require jquery
//= require calendar

create new file app/assets/javascripts/calendar.js

//Core component
//= require fullcalendar
// optional locale
//= require fullcalendar/locale/ms

//Optional addon scheduler
//= require fullcalendar/scheduler

Stylesheets

Include the stylesheet in your app/assets/stylesheets/application.css:

*= require calendar

or if you using scss

Include the stylesheet in your app/assets/stylesheets/application.scss:

@import 'calendar';

Create new file app/assets/stylesheets/calendar.scss

@import 'fullcalendar';

Initialization

Where needed in your JavaScripts, initialize your fullcalendar:

$(document).ready(function() {
  var calendarEl = document.getElementById('calendar');
  new (FullCalendar.Calendar)(calendarEl);
});

Usage

see fullcalendar documentations here

The gem is available as open source under the terms of the MIT License. Fullcalendar and Scheduler, which makes up the majority of this gem, has its own, separate licensing agreement.