# frozen_string_literal: true module Lite module Report class InstallGenerator < Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) def copy_initializer_file copy_file('install.rb', 'config/initializers/lite_report.rb') end end end end