I'm trying to add a calendar to my web app but it's not working. I followed the instructions below and I can't get the calendar to populate.
Do I need to write all the Javascript as well? This seems like a quick step to install a calendar. I'm sure I'm missing some steps for installation but this is what I found online.
- Add to gemfile - gem 'fullcalendar-rails' gem 'momentjs-rails'
2. Bundle install and restart rails server.
3. Add to application.js
    //= require moment 
    //= require fullcalendar
    $('#calendar').fullCalendar({});
- Add to application.css - *= require fullcalendar
- In view, include the following html: - <div id="calendar"></div>
 
     
    