Metadata-Version: 1.1
Name: gears-sass
Version: 0.2.2
Summary: SASS compiler for Gears
Home-page: https://github.com/ChillyBwoy/gears-sass
Author: Eugene Cheltsov
Author-email: chill.icp@gmail.com
License: ISC
Description: gears-sass
        ==================
        
        SCSS compiler for Gears. 
        
        Bundled [node-sass](https://github.com/andrew/node-sass) version: 0.8.6
        
        
        Installation
        ------------
        
        Install `gears-sass` with pip:
        
            $ pip install gears-sass
        
        
        Requirements
        ------------
        - [node.js](http://nodejs.org)
        
        
        Usage
        -----
        
        Add `gears_sass.SASSCompiler` to `environment`'s compilers registry:
        
            from gears_sass import SASSCompiler
            environment.compilers.register('.scss', SASSCompiler.as_handler())
        
        If you use Gears in your Django project, add this code to its settings:
        
            GEARS_COMPILERS = {
                '.scss': 'gears_sass.SASSCompiler',
            }
        
Keywords: gears django-gears gears-sass gears-scss
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
