]> source.dussan.org Git - redmine.git/commitdiff
Fix: redmine_plugin_controller generates camelcase filename (#28668).
authorGo MAEDA <maeda@farend.jp>
Sat, 5 May 2018 02:55:33 +0000 (02:55 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 5 May 2018 02:55:33 +0000 (02:55 +0000)
Patch by Toru Takahashi.

git-svn-id: http://svn.redmine.org/redmine/trunk@17325 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/generators/redmine_plugin_controller/redmine_plugin_controller_generator.rb

index 9c42d938bf15751edaf3b434b830f52490526ed6..16a820ebf64c5abddc46a4957f5efb12a46dca54 100644 (file)
@@ -14,12 +14,12 @@ class RedminePluginControllerGenerator < Rails::Generators::NamedBase
   end
 
   def copy_templates
-    template 'controller.rb.erb', "#{plugin_path}/app/controllers/#{controller}_controller.rb"
-    template 'helper.rb.erb', "#{plugin_path}/app/helpers/#{controller}_helper.rb"
-    template 'functional_test.rb.erb', "#{plugin_path}/test/functional/#{controller}_controller_test.rb"
+    template 'controller.rb.erb', "#{plugin_path}/app/controllers/#{controller.underscore}_controller.rb"
+    template 'helper.rb.erb', "#{plugin_path}/app/helpers/#{controller.underscore}_helper.rb"
+    template 'functional_test.rb.erb', "#{plugin_path}/test/functional/#{controller.underscore}_controller_test.rb"
     # View template for each action.
     actions.each do |action|
-      path = "#{plugin_path}/app/views/#{controller}/#{action}.html.erb"
+      path = "#{plugin_path}/app/views/#{controller.underscore}/#{action}.html.erb"
       @action_name = action
       template 'view.html.erb', path
     end