11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/generators/schoolgirl_uniform/install_generator.rb', line 11
def create_initializer_file
copy_file "wizard.html.erb", "app/views/#{file_name}/_wizard.html.erb"
copy_file "form_errors.html.erb", "app/views/#{file_name}/_form_errors.html.erb"
copy_file "show.html.erb", "app/views/#{file_name}/show.html.erb"
copy_file "finish.html.erb", "app/views/#{file_name}/finish.html.erb"
copy_file "steps/first.html.erb", "app/views/#{file_name}/steps/_first.html.erb"
copy_file "steps/second.html.erb", "app/views/#{file_name}/steps/_second.html.erb"
copy_file "steps/third.html.erb", "app/views/#{file_name}/steps/_third.html.erb"
template "forms/template_form.rb.erb", "app/forms/#{file_name}_form.rb"
template "controllers/template_controller.rb.erb", "app/controllers/#{file_name}_controller.rb"
end
|