From 3cd6610c7f152fe6391ebd8b82cc42de1ce97b5c Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Fri, 16 Jan 2009 13:47:54 -0800 Subject: [PATCH] Added the metadata for registering the plugin to Redmine --- init.rb | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/init.rb b/init.rb index 726aa40..4af2d5c 100644 --- a/init.rb +++ b/init.rb @@ -1,8 +1,12 @@ require 'redmine' Redmine::Plugin.register :redmine_rate do - name 'Redmine Rate plugin' - author 'Author name' - description 'This is a plugin for Redmine' - version '0.0.1' + name 'Rate Plugin' + author 'Eric Davis' + url 'https://projects.littlestreamsoftware.com/projects/show/redmine-rate' + author_url 'http://www.littlestreamsoftware.com' + description "The Rate plugin provides an API that can be used to find the rate for a Member of a Project at a specific date. It also stores historical rate data so calculations will remain correct in the future." + version '0.1.0' + + requires_redmine :version_or_higher => '0.8.0' end