Last active
March 2, 2016 18:04
-
-
Save djburdick/384f1454ec00e62c2e04 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### TODO: dockerize all envs to avoid env specific hacks like this | |
group :development, :test, :production do | |
gem 'wkhtmltopdf-binary' | |
end | |
### TODO: dockerize all envs to avoid env specific hacks like this | |
# wkhtmltopdf-binary library needed a different binary to work on staging server | |
group :staging do | |
gem 'wkhtmltopdf-binary', git: 'https://github.com/djburdick/wkhtmltopdf_binary_gem.git', branch: 'master' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment