|
class InstallGenerator < ::Rails::Generators::Base
|
|
include Rails::Generators::Migration
|
|
source_root File.expand_path('../templates', __FILE__)
|
|
desc "Installs Calendar Module for R4"
|
|
|
|
def install
|
|
template "initializer.rb", "config/initializers/orbit_calendar.rb"
|
|
end
|
|
end
|