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