FIX: fixes plugin generator with zeitwerk (#8220)

This commit is contained in:
Joffrey JAFFEUX
2019-10-21 09:24:14 +02:00
committed by GitHub
parent 98d6cee7c7
commit 8f51445e9f
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class PluginGenerator < Rails::Generators::NamedBase
end
def controller_file
template 'plugin_controller.rb.erb', File.join('plugins', dasherized_name, "app/controllers/#{dasherized_name}/#{underscored_name}_controller.rb")
template 'plugin_controller.rb.erb', File.join('plugins', dasherized_name, "app/controllers/#{underscored_name}/#{underscored_name}_controller.rb")
template 'controller.rb.erb', File.join('plugins', dasherized_name, "app/controllers/#{underscored_name}/actions_controller.rb")
template 'controller_spec.rb.erb', File.join('plugins', dasherized_name, "spec/requests/actions_controller_spec.rb")
end