Class: Slim::Generators::ScaffoldGenerator
- Inherits:
-
Erb::Generators::ScaffoldGenerator
- Object
- Erb::Generators::ScaffoldGenerator
- Slim::Generators::ScaffoldGenerator
- Defined in:
- lib/generators/slim/scaffold/scaffold_generator.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#copy_view_files ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/generators/slim/scaffold/scaffold_generator.rb', line 12 def copy_view_files available_views.each do |view| filename = filename_with_extensions view template "#{view}.html.slim", File.join("app", "views", controller_file_path, filename) end if ::Rails::VERSION::MAJOR >= 7 template "partial.html.slim", File.join("app/views", controller_file_path, "_#{singular_name}.html.slim") end end |