Class: LayoutGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/layout/layout_generator.rb

Instance Method Summary collapse

Instance Method Details

#generate_layoutObject



7
8
9
10
11
# File 'lib/generators/layout/layout_generator.rb', line 7

def generate_layout
	copy_file "stylesheet.css" , "app/assets/stylesheets/#{file_name}.css"
	copy_file "javascript.js" ,  "app/assets/javascripts/#{file_name}.js"
	template "layout.html.erb" , "app/views/layouts/#{file_name}.html.erb"
end