ソースを参照

Fix: redmine_plugin_controller generates camelcase filename (#28668).

Patch by Toru Takahashi.


git-svn-id: http://svn.redmine.org/redmine/trunk@17325 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.0.0
Go MAEDA 6年前
コミット
c9a216b816

+ 4
- 4
lib/generators/redmine_plugin_controller/redmine_plugin_controller_generator.rb ファイルの表示

@@ -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

読み込み中…
キャンセル
保存