With a little slapstick, I added a calendar function to the app. I will introduce the flow. It's not a useful calendar yet, so I'll adjust it a little more.
Gemfile
gem "simple_calendar", "~> 2.0"
Make sure the current directory is the application you are creating
% bundle install
*
*= require simple_calendar ← Describe this
*= require_tree .
*= require_self
*/
<%= month_calendar do |date| %>
<%= date %>
<% end %>
↑ At a minimum, you can create a calendar like this.
rails g simple_calendar:views
If you edit the view generated by this command, you can fine-tune the view.