Plugins » History » Revision 11
Revision 10 (Eric Davis, 2008-05-23 00:40) → Revision 11/118 (Eric Davis, 2008-06-18 18:29)
h1. Plugins
Redmine 0.6.0 provides basic support for plugins. Redmine plugins can rely on "Rails engines":http://rails-engines.org/ to add functionalities to the application.
h2. Installing a plugin
1. First, you need to install the Rails engines plugin: http://rails-engines.org/. If you are using Rails 2.0 you will need "Engines 2":http://rails-engines.org/news/2007/12/11/engines-2-0-ish/ and also add the Engine boot configuration to @environment.rb@:
<pre>
require File.join(File.dirname(__FILE__), '../vendor/plugins/engines/boot')
</pre>
2. Then, copy your plugin directory into @#{RAILS_ROOT}/vendor/plugins@.
3. If the plugin requires a migration, run the following command to upgrade your database (make a db backup before):
rake db:migrate_plugins
4. Start Redmine
You should now be able to see the plugin list in 'Admin -> Information' and configure the newly installed plugin (if the plugin requires to be configured).
h2. Plugin list
* [[PluginCustomer|Customer]] is plugin to track basic customer information and to see which project belonged to a customer.
* [[PluginGoogleCalendar|Google Calendar]] is a simple plugin to include Google Calendar iframe as a tab within Redmine projects.
* [[PluginProjectScores|Project Scores]] is plugin which will let a user score a project on different criteria.
* [[PluginSimpleCI|Simple CI]] is a generic plugin for integrating per project RSS continuous integration feeds (eg. "Cruise Control":http://cruisecontrol.sourceforge.net/) in Redmine.
* [[PluginTimesheet|Timesheet]] is plugin to show and filter timelogs across all projects in Redmine.