This Plugin adds features, that enable agile teams to work efficiently with OpenProject in Scrum projects.
Find a more detailed description on OpenProject.org.
Together with the plugin OpenProject PDF Export, story cards can be exported as printable PDF documents.
The OpenProject Backlogs plug-in requires the OpenProject Core in version greater or equal to 3.0.0.
Tests for this plugin require pdf-inspector
, so just add the following line to
OpenProject's Gemfile.plugin
:
gem "pdf-inspector", "~>1.0.0", :group => :test
OpenProject Backlogs depends on OpenProject Plugins and on OpenProject PDF export Plugin. Thus, if you haven't done
it already, add the following lines to the Gemfile.plugins
to your OpenProject installation:
gem "openproject-plugins", git: "https://github.com/opf/openproject-plugins.git", :branch => "stable"
gem "openproject-pdf_export", git: "https://github.com/finnlabs/openproject-pdf_export.git", :branch => "stable"
For OpenProject Backlogs itself you need to add the following line to the
Gemfile.plugins
of OpenProject:
gem "openproject-backlogs", git: "https://github.com/finnlabs/openproject-backlogs.git", :branch => "stable"
Afterwards, run:
bundle install
This plugin contains migrations. To migrate the database, run:
rake db:migrate
Remove the line
gem "openproject-backlogs", git: "https://github.com/finnlabs/openproject-backlogs.git"
, :branch => "stable"`
from the file Gemfile.plugins
and run:
bundle install
Please not that this leaves plugin data in the database. Currently, we do not support full uninstall of the plugin.
If you find any bugs, you can create a bug ticket at
https://www.openproject.org/projects/plugin-backlogs
To contribute, you can create pull request on the official repository at
https://github.com/finnlabs/openproject-backlogs
We thank the original maintainers and developers of Redmine Backlogs as well as Chiliproject Backlogs for their immense work on this plugin. OpenProject Backlogs would not have been possible without their original contribution. Those contributors are:
- Marnen Laibow-Koser
- Sandro Munda
- friflaj
- Maxime Guilbot
- Andrew Vit
- Joakim Kolsjö
- ibussieres
- Daniel Passos
- Jason Vasquez
- jpic
- Emiliano Heyns
- Mark Maglana
- Joe Heck
- Nate Lowrie
Additionally, we would like to thank
- Deutsche Telekom AG ([email protected]) for project sponsorhip
Copyright (C)2013-2014 the OpenProject Foundation (OPF)
Copyright (C)2011 Marnen Laibow-Koser, Sandro Munda
Copyright (C)2010-2011 friflaj
Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns
Copyright (C)2009-2010 Mark Maglana
Copyright (C)2009 Joe Heck, Nate Lowrie
This plugin is licensed under the GNU GPL v3. See doc/COPYRIGHT.md and doc/GPL.txt for details.