docverter-server 1.0.2-java → 1.0.3-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.buildpacks +1 -1
- data/Gemfile +2 -0
- data/README.md +2 -2
- data/doc/examples/php/markdown_to_pdf.php +2 -1
- data/lib/docverter-server/version.rb +1 -1
- metadata +1 -1
data/.buildpacks
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
https://github.com/peterkeen/heroku-buildpack-vendorbinaries.git
|
|
2
|
-
https://github.com/
|
|
2
|
+
https://github.com/heroku/heroku-buildpack-ruby.git
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Installing on Heroku is the easiest option. Simply clone the repo, create an app
|
|
|
13
13
|
$ git clone https://github.com/Docverter/docverter.git
|
|
14
14
|
$ cd docverter
|
|
15
15
|
$ heroku create --buildpack https://github.com/ddollar/heroku-buildpack-multi.git
|
|
16
|
-
$ heroku config:add PATH=bin:/app/bin:/app/jruby/bin:/usr/bin:/bin
|
|
16
|
+
$ heroku config:add PATH=bin:/app/bin:/app/jruby/bin:/usr/bin:/bin:/app/calibre/bin
|
|
17
17
|
$ git push heroku master
|
|
18
18
|
|
|
19
19
|
If you'd like to install locally, first ensure that Jruby, Pandoc and Calibre are installed and available. Then (for Ubuntu):
|
|
@@ -33,4 +33,4 @@ more export options.
|
|
|
33
33
|
See `doc/api.md` and [Docverter Ruby](https://github.com/docverter/docverter-ruby) for usage documentation.
|
|
34
34
|
|
|
35
35
|
###### PHP
|
|
36
|
-
See `doc/php/markdown_to_pdf.php` for usage documentation.
|
|
36
|
+
See `doc/examples/php/markdown_to_pdf.php` for usage documentation.
|