Sha256: 87afac1a5a363ebbb351edba7e2c5017e22cab9cf7fa7201befc19f5d8066c40
Contents?: true
Size: 463 Bytes
Versions: 48
Compression:
Stored size: 463 Bytes
Contents
require 'rails/generators/migration' module TkhAdminPanel module Generators class CopyFilesGenerator < ::Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) desc "add a fully populated admin_sidebar partial" def copy_view_partial puts 'creating an admin_sidebar partial' copy_file "_admin_sidebar.html.erb", "app/views/shared/_admin_sidebar.html.erb" end end end end
Version data entries
48 entries across 48 versions & 1 rubygems