Updated readme, gemspec and engine

pull/6827/head
Sebastian Schuster 11 years ago
parent df9a94eb7a
commit ef945e07a6
  1. 8
      README.md
  2. 2
      lib/open_project/pdf_export/engine.rb
  3. 2
      openproject-pdf_export.gemspec

@ -9,7 +9,7 @@ Requirements
------------
The OpenProject PDF Export plugin requires the [OpenProject Core](https://github.com/opf/openproject/) in
version greater or equal to *3.0.0pre37*.
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`:
@ -23,12 +23,12 @@ Installation
OpenProject PDF Export depends on OpenProject Plugins. Thus, if you haven't done
it already, add the following line to the `Gemfile.plugins` to your OpenProject installation:
`gem "openproject-plugins", git: "https://github.com/opf/openproject-plugins.git", :branch => "dev"`
`gem "openproject-plugins", git: "https://github.com/opf/openproject-plugins.git", :branch => "stable"`
For OpenProject PDF Export itself you need to add the following line to the
`Gemfile.plugins` of the project which is using the plugin:
`gem "openproject-pdf_export", git: "https://github.com/finnlabs/openproject-pdf_export.git", :branch => "dev"`
`gem "openproject-pdf_export", git: "https://github.com/finnlabs/openproject-pdf_export.git", :branch => "stable"`
Afterwards, run:
@ -46,7 +46,7 @@ Deinstallation
Remove the line
`gem "openproject-pdf_export", git: "https://github.com/finnlabs/openproject-pdf_export.git", :branch => "dev"`
`gem "openproject-pdf_export", git: "https://github.com/finnlabs/openproject-pdf_export.git", :branch => "stable"`
from the file `Gemfile.plugins` and run:

@ -35,7 +35,7 @@ module OpenProject::PdfExport
register 'openproject-pdf_export',
:author_url => 'http://finn.de',
:requires_openproject => '>= 3.0.0pre42' do
:requires_openproject => '>= 3.0.0' do
menu :admin_menu,
:export_card_configurations,

@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.files = Dir["{app,config,db,lib,doc}/**/*", "README.md"]
s.add_dependency "rails", "~> 3.2.14"
s.add_dependency "openproject-plugins", "~> 1.0.5"
s.add_dependency "openproject-plugins", "~> 1.0.6"
s.add_dependency "prawn", "~> 0.14.0"
s.add_development_dependency "pdf-inspector", "~>1.0.0"

Loading…
Cancel
Save