Sha256: aaaccb2dc78206cf37dcdb65b82567075a4d41dec86209ec45b1176b6ce36756
Contents?: true
Size: 935 Bytes
Versions: 55
Compression:
Stored size: 935 Bytes
Contents
module Cmor module Cms module Generators class InstallGenerator < Rails::Generators::Base desc 'Generates the initializer' source_root File.expand_path('../templates', __FILE__) attr_reader :base_controller_class_name def initialize(*args) super @base_controller_class_name = ENV.fetch('BASE_CONTROLLER_CLASS_NAME') { '::ApplicationController' } end def generate_initializer template 'initializer.rb', 'config/initializers/cmor_cms.rb' end def generate_routes inject_into_file 'config/routes.rb', before: "\nend" do File.read(File.join(File.expand_path('../templates', __FILE__), 'routes.source')) end end # def add_homepages # if yes? "Do you want to add homepages?" # AddHomepagesService.call # end # end end end end end
Version data entries
55 entries across 55 versions & 1 rubygems