Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
3
lib/generators/redmine_plugin/templates/README.rdoc
Normal file
3
lib/generators/redmine_plugin/templates/README.rdoc
Normal file
|
@ -0,0 +1,3 @@
|
|||
= <%= file_name %>
|
||||
|
||||
Description goes here
|
|
@ -0,0 +1,3 @@
|
|||
# English strings go here for Rails i18n
|
||||
en:
|
||||
# my_label: "My label"
|
8
lib/generators/redmine_plugin/templates/init.rb.erb
Normal file
8
lib/generators/redmine_plugin/templates/init.rb.erb
Normal file
|
@ -0,0 +1,8 @@
|
|||
Redmine::Plugin.register :<%= plugin_name %> do
|
||||
name '<%= plugin_pretty_name %> plugin'
|
||||
author 'Author name'
|
||||
description 'This is a plugin for Redmine'
|
||||
version '0.0.1'
|
||||
url 'http://example.com/path/to/plugin'
|
||||
author_url 'http://example.com/about'
|
||||
end
|
2
lib/generators/redmine_plugin/templates/routes.rb
Normal file
2
lib/generators/redmine_plugin/templates/routes.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Plugin's routes
|
||||
# See: http://guides.rubyonrails.org/routing.html
|
|
@ -0,0 +1,2 @@
|
|||
# Load the Redmine helper
|
||||
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')
|
Loading…
Add table
Add a link
Reference in a new issue