|
2 | 2 |
|
3 | 3 | require_dependency 'project_alias_hook'
|
4 | 4 |
|
5 |
| -Rails.logger.info 'Starting Project Alias plugin for Redmine' |
| 5 | +Rails.logger.info 'Starting Project Alias 2 plugin for Redmine' |
6 | 6 |
|
7 | 7 | Rails.configuration.to_prepare do
|
8 |
| - unless String.method_defined?(:html_safe) |
9 |
| - String.send(:include, AliasStringHTMLSafePatch) |
10 |
| - end |
11 |
| - unless Project.included_modules.include?(AliasProjectPatch) |
12 |
| - Project.send(:include, AliasProjectPatch) |
13 |
| - end |
14 |
| - unless ApplicationHelper.included_modules.include?(AliasApplicationHelperPatch) |
15 |
| - ApplicationHelper.send(:include, AliasApplicationHelperPatch) |
16 |
| - end |
| 8 | + unless String.method_defined?(:html_safe) |
| 9 | + String.send(:include, AliasStringHTMLSafePatch) |
| 10 | + end |
| 11 | + unless Project.included_modules.include?(AliasProjectPatch) |
| 12 | + Project.send(:include, AliasProjectPatch) |
| 13 | + end |
| 14 | + unless ApplicationHelper.included_modules.include?(AliasApplicationHelperPatch) |
| 15 | + ApplicationHelper.send(:include, AliasApplicationHelperPatch) |
| 16 | + end |
17 | 17 | end
|
18 | 18 |
|
19 |
| -Redmine::Plugin.register :project_alias do |
20 |
| - name 'Project Alias' |
21 |
| - author 'Andriy Lesyuk & Tobias Fischer' |
22 |
| - description 'Allows adding project identifier aliases.' |
23 |
| - url 'https://github.com/paginagmbh/redmine_project-alias' |
24 |
| - version '0.2.0' |
| 19 | +Redmine::Plugin.register :redmine_project_alias_2 do |
| 20 | + name 'Project Alias 2' |
| 21 | + author 'Andriy Lesyuk & Tobias Fischer' |
| 22 | + description 'Allows adding project identifier aliases or renaming of project identifiers.' |
| 23 | + url 'https://github.com/paginagmbh/redmine_project-alias-2' |
| 24 | + version '1.0.0' |
| 25 | + requires_redmine :version_or_higher => '2.6' |
25 | 26 |
|
26 |
| - menu :admin_menu, :project_aliases, |
27 |
| - { :controller => 'project_aliases', :action => 'index' }, |
28 |
| - :caption => :label_alias_plural, |
29 |
| - :after => :projects |
| 27 | + menu :admin_menu, :project_aliases, |
| 28 | + { :controller => 'project_aliases', :action => 'index' }, |
| 29 | + :caption => :label_alias_plural, |
| 30 | + :after => :projects |
30 | 31 | end
|
0 commit comments