docverter-server 1.0.2-java → 1.0.3-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,2 +1,2 @@
1
1
  https://github.com/peterkeen/heroku-buildpack-vendorbinaries.git
2
- https://github.com/jruby/heroku-buildpack-jruby.git
2
+ https://github.com/heroku/heroku-buildpack-ruby.git
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
+ ruby '1.9.3', engine: 'jruby', engine_version: '1.7.4'
4
+
3
5
  gemspec
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.
@@ -1,4 +1,5 @@
1
- <?//set POST variables
1
+ <?php
2
+ //set POST variables
2
3
  $url = 'http://c.docverter.com/convert';
3
4
  $fields = array('from' => 'markdown',
4
5
  'to' => 'pdf',
@@ -1,3 +1,3 @@
1
1
  module DocverterServer
2
- VERSION = '1.0.2'
2
+ VERSION = '1.0.3'
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: docverter-server
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.2
5
+ version: 1.0.3
6
6
  platform: java
7
7
  authors:
8
8
  - Pete Keen