10 lines
272 B
Ruby
10 lines
272 B
Ruby
|
class InstallGenerator < ::Rails::Generators::Base
|
||
|
include Rails::Generators::Migration
|
||
|
source_root File.expand_path('../templates', __FILE__)
|
||
|
desc "Installs Ecom Store"
|
||
|
|
||
|
def install
|
||
|
template "initializer.rb", "config/initializers/orbit_calendar.rb"
|
||
|
end
|
||
|
end
|