- Open Terminal.app
- Install RVM:
\curl -sSL https://get.rvm.io | bash -s stable --ruby
- Get a coffee
- Activate RVM:
source /Users/<username>/.rvm/scripts/rvm
ruby --version
should now give 2.1.0 or similar- Add
source /Users/<username>/.rvm/scripts/rvm
to your ~/.bash_profile if you don't want to run it every time you open Terminal.app gem install dashing
- Get another coffee
This file contains hidden or 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
""" | |
A bunch of PDF utilities for Django, wkhtmltopdf and pdftk | |
Note: These have been cobbled together from various projects, | |
and probably can't be trusted. Make sure you read over | |
and full understand the code fully before attempting to use! | |
""" | |
import sys, os, csv | |
import subprocess |