Metadata-Version: 1.0
Name: gears-coffeescript
Version: 0.1.1
Summary: CoffeeScript compiler for Gears
Home-page: https://github.com/gears/gears-coffeescript
Author: Mike Yumatov
Author-email: mike@yumatov.org
License: ISC
Description: gears-coffeescript
        ==================
        
        CoffeeScript_ compiler for Gears_. This package already includes the
        CoffeeScript source code for you, so you don't need to worry about installing
        it yourself.
        
        Bundled CoffeeScript version: **1.3.3**
        
        Installation
        ------------
        
        Install ``gears-coffeescript`` with pip::
        
            $ pip install gears-coffeescript
        
        
        Requirements
        ------------
        
        ``gears-coffeescript`` requires node.js_ to be installed in your system.
        
        
        Usage
        -----
        
        Add ``gears_coffeescript.CoffeeScriptCompiler`` to ``environment``'s compilers
        registry::
        
            from gears_coffeescript import CoffeeScriptCompiler
            environment.compilers.register('.coffee', CoffeeScriptCompiler.as_handler())
        
        If you use Gears in your Django project, add this code to its settings::
        
            GEARS_COMPILERS = {
                '.coffee': 'gears_coffeescript.CoffeeScriptCompiler',
            }
        
        .. _CoffeeScript: http://coffeescript.org/
        .. _Gears: https://github.com/gears/gears
        .. _node.js: http://nodejs.org/
        
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.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
