An open API service indexing awesome lists of open source software.

https://github.com/ivaldi/postdoc

Generate PDF files from Ruby with headless Chrome/Chromium from Ruby
https://github.com/ivaldi/postdoc

html pdf ruby

Last synced: 4 months ago
JSON representation

Generate PDF files from Ruby with headless Chrome/Chromium from Ruby

Awesome Lists containing this project

README

          

## Welcome to Postdoc.
This gem was build to convert HTML data into PDF documents. This is handy because Rails is much better at building HTML document than at building PDF documents.

## Usage

Add the following line to your gemfile
```ruby
gem 'postdoc'
```
And install it
```sh
bundle install
```

Now you can render a pdf from a string that contains the data from a HTML file in the following way:

## Handy links:
- [ChromeRemote](https://github.com/cavalle/chrome_remote) is gives us a client to talk to chrome.

## Handy commands:
```sh
# Run tests.
rake test

# Generate a test pdf. Usefull for debugging purposes.
bin/run_with_website
```

## Known issues:

For Mac users with an `No such file or directory - chrome` exception, use the following command from the root folder of this repository.

```
cp bin/chrome /usr/local/bin/chrome
```

## TODO
Refactor all instances of string to stringIO for better future interop with
files.