module ConteRailsTemplate #:nodoc: module Generators #:nodoc: class InstallGenerator < Rails::Generators::Base #:nodoc: source_root File.expand_path('../templates', __FILE__) def copy_stuff #:nodoc: copy_file 'layout.html.erb', 'app/views/layouts/application.html.erb' copy_file 'session.html.erb', 'app/views/layouts/single.html.erb' end def install_wice_grid generate "wice_grid:install" end end end end