Class: Erb::Generators::ScaffoldGenerator
- Inherits:
-
Base
- Object
- Base
- Erb::Generators::ScaffoldGenerator
- Includes:
- Rails::Generators::ResourceHelpers
- Defined in:
- lib/generators/rails/erb/erb_generator.rb
Instance Method Summary collapse
Instance Method Details
#copy_view_files ⇒ Object
19 20 21 22 23 24 |
# File 'lib/generators/rails/erb/erb_generator.rb', line 19 def copy_view_files available_views.each do |view| filename = filename_with_extensions(view) template filename, File.join("app/views", controller_file_path, filename) end end |
#create_root_folder ⇒ Object
15 16 17 |
# File 'lib/generators/rails/erb/erb_generator.rb', line 15 def create_root_folder empty_directory File.join("app/views", controller_file_path) end |