Plugins » History » Version 11
Eric Davis, 2008-06-18 18:29
Removed Rails 2.0 branch now that engines supports it in their releases. Removed engine boot line since Redmine has that in trunk now.
1 | 1 | Jean-Philippe Lang | h1. Plugins |
---|---|---|---|
2 | |||
3 | 3 | Jean-Philippe Lang | 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. |
4 | 1 | Jean-Philippe Lang | |
5 | h2. Installing a plugin |
||
6 | |||
7 | 11 | Eric Davis | 1. First, you need to install the Rails engines plugin: http://rails-engines.org/. |
8 | 1 | Jean-Philippe Lang | |
9 | 2. Then, copy your plugin directory into @#{RAILS_ROOT}/vendor/plugins@. |
||
10 | |||
11 | 3. If the plugin requires a migration, run the following command to upgrade your database (make a db backup before): |
||
12 | |||
13 | rake db:migrate_plugins |
||
14 | |||
15 | 4. Start Redmine |
||
16 | |||
17 | 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). |
||
18 | |||
19 | h2. Plugin list |
||
20 | |||
21 | 10 | Eric Davis | * [[PluginCustomer|Customer]] is plugin to track basic customer information and to see which project belonged to a customer. |
22 | 9 | Eric Davis | * [[PluginGoogleCalendar|Google Calendar]] is a simple plugin to include Google Calendar iframe as a tab within Redmine projects. |
23 | 6 | Eric Davis | * [[PluginProjectScores|Project Scores]] is plugin which will let a user score a project on different criteria. |
24 | 5 | Jean-Philippe Lang | * [[PluginSimpleCI|Simple CI]] is a generic plugin for integrating per project RSS continuous integration feeds (eg. "Cruise Control":http://cruisecontrol.sourceforge.net/) in Redmine. |
25 | * [[PluginTimesheet|Timesheet]] is plugin to show and filter timelogs across all projects in Redmine. |