Compass compiler for django-pipeline using the original Ruby Gem.
- Compass:
gem install compass
# from PyPi
$ pip install django-pipeline-compass-rubygem
# from GitHub
$ pip install git+https://github.com/mila-labs/django-pipeline-compass-rubygem.git
COMPASS_BINARY and COMPASS_ARGUMENTS can be either a string or a list/tuple.
# settings.py
PIPELINE['COMPASS_BINARY'] = '/usr/local/bin/compass' # default: ['/usr/bin/env', 'compass']
PIPELINE['COMPASS_ARGUMENTS'] = ['-c', 'path/to/config.rb'] # default: []
PIPELINE['COMPILERS'] = (
'pipeline_compass.compass.CompassCompiler',
)