Plugins » History » Revision 9
« Previous |
Revision 9/118
(diff)
| Next »
Eric Davis, 2008-03-13 06:57
Adding Jim Mulholland's plugin - http://www.redmine.org/boards/1/topics/show/72
Plugins¶
Redmine 0.6.0 provides basic support for plugins. Redmine plugins can rely on Rails engines to add functionalities to the application.
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 and also add the Engine boot configuration to environment.rb
:
require File.join(File.dirname(__FILE__), '../vendor/plugins/engines/boot')
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).
Plugin list¶
- Google Calendar is a simple plugin to include Google Calendar iframe as a tab within Redmine projects.
- Project Scores is plugin which will let a user score a project on different criteria.
- Simple CI is a generic plugin for integrating per project RSS continuous integration feeds (eg. Cruise Control) in Redmine.
- Timesheet is plugin to show and filter timelogs across all projects in Redmine.
Updated by Eric Davis over 16 years ago · 9 revisions