redmine plguin templates, modified init.rb

This commit is contained in:
Toru Takahashi 2018-04-30 21:34:14 +09:00 committed by TAKAHASHI,Toru
parent c780e0d009
commit fccc7d7bc8
4 changed files with 15 additions and 0 deletions

3
config/locales/en.yml Normal file
View File

@ -0,0 +1,3 @@
# English strings go here for Rails i18n
en:
# my_label: "My label"

2
config/routes.rb Normal file
View File

@ -0,0 +1,2 @@
# Plugin's routes
# See: http://guides.rubyonrails.org/routing.html

8
init.rb Normal file
View File

@ -0,0 +1,8 @@
Redmine::Plugin.register :redmine_glossary do
name 'Redmine Glossary plugin'
author 'Toru Takahashi'
description 'This is a plugin for Redmine to create a glossary that is a list of terms in a project.'
version '1.0.1'
url 'https://github.com/torutk/redmine_glossary'
author_url 'http://www.torutk.com'
end

2
test/test_helper.rb Normal file
View File

@ -0,0 +1,2 @@
# Load the Redmine helper
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')