2014-01-15 09:30:28 +00:00
|
|
|
class InstallGenerator < ::Rails::Generators::Base
|
2014-01-15 09:27:01 +00:00
|
|
|
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
|