diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..642b07f --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,3 @@ +# English strings go here for Rails i18n +en: + # my_label: "My label" diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..1803173 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,2 @@ +# Plugin's routes +# See: http://guides.rubyonrails.org/routing.html diff --git a/init.rb b/init.rb new file mode 100644 index 0000000..c9b8d71 --- /dev/null +++ b/init.rb @@ -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 diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..54685d3 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,2 @@ +# Load the Redmine helper +require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')