From 5389a209e89e8f5fb62c21491aaa5e7cb69f8201 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Tue, 20 May 2008 15:32:18 -0700 Subject: [PATCH] Setup init information. #1134 --- init.rb | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/init.rb b/init.rb index f43a6f5..ff61488 100644 --- a/init.rb +++ b/init.rb @@ -1,13 +1,10 @@ -# Empty redmine plguin require 'redmine' -# TODO: Change this to use the name of your plugin -RAILS_DEFAULT_LOGGER.info 'Starting Empty plugin for RedMine' +RAILS_DEFAULT_LOGGER.info 'Starting Budget plugin for RedMine' -# TODO: Change the name -Redmine::Plugin.register :empty_plugin do - name 'Empty plugin' - author 'Eric Davis' - description 'This is an empty plugin for Redmine that is used to start new plugins' +Redmine::Plugin.register :budget_plugin do + name 'Budget' + author 'Eric Davis ' + description 'This is a budget plugin to track deliverables and budgets on a project' version '0.0.0' end