Sha256: 8922e9cbc61c7d359303508be7df858755633237e9eb18a950c48099f96cd1f7
Contents?: true
Size: 1.63 KB
Versions: 1
Compression:
Stored size: 1.63 KB
Contents
# wkhtmltopdf-heroku Provides a [wkhtmltopdf](http://wkhtmltopdf.org/) binary for [Heroku](http://www.heroku.com/) Ubuntu 16.04 LTS environment. Preconfigures [pdfkit](https://rubygems.org/gems/pdfkit), [wicked_pdf](https://rubygems.org/gems/wicked_pdf), and [wisepdf](http://rubygems.org/gems/wisepdf) to use this binary if they are loaded. ## Installation In your `Gemfile`: ```ruby gem 'wkhtmltopdf-heroku' ``` ## Usage ### When using with `wicked_pdf` Since `wicked_pdf` overwrites its `config` hash in the initializer, you will need to update it to make sure its `exe_path` is configured correctly. If you don't need any extra configurations, you can simply remove the initializer. Or you can change it to: ```ruby WickedPdf.config ||= {} WickedPdf.config.merge!({ # your extra configurations here }) ``` ### When using with `pdf_kit` or `wisepdf` No extra configuration is needed. But please make sure you are not re-configuring the binary path again in their initializer files. ### When using with other gems You will need to configure the path manually. You can get the path to the executable by using this: `Gem.bin_path('wkhtmltopdf-heroku', 'wkhtmltopdf-linux-amd64')` ## Current wkhtmltopdf binary Version [0.12.5.0 Linux Generic AMD64](https://github.com/wkhtmltopdf/wkhtmltopdf/tree/0.12.5) For more details see wkhtmltopdf [Changelog](https://github.com/wkhtmltopdf/wkhtmltopdf/blob/master/CHANGELOG.md) ## Supported Heroku Stacks * [Cedar-16](https://devcenter.heroku.com/articles/heroku-16-stack) ## Contributors * @bradphelan * @pallymore ## Copyright Copyright (c) 2011 Brad Phelan. See LICENSE.txt for further details.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wkhtmltopdf-heroku-2.12.5.0.pre.alpha | README.mdown |