Metadata-Version: 1.1
Name: gears-handlebars
Version: 0.1
Summary: Handlebars compiler for Gears
Home-page: https://github.com/gears/gears-handlebars
Author: Mike Yumatov
Author-email: mike@yumatov.org
License: ISC
Description: gears-handlebars
        ==================
        
        Handlebars_ compiler for Gears_. This package already includes the Handlebars
        source code for you, so you don't need to worry about installing it yourself.
        
        Installation
        ------------
        
        Install ``gears-handlebars`` with pip::
        
            $ pip install gears-handlebars
        
        
        Requirements
        ------------
        
        ``gears-handlebars`` requires node.js_ to be installed in your system.
        
        
        Usage
        -----
        
        Add ``gears_handlebars.HandlebarsCompiler`` to ``environment``'s compilers
        registry::
        
            from gears_handlebars import HandlebarsCompiler
            environment.compilers.register('.handlebars', HandlebarsCompiler.as_handler())
        
        If you use Gears in your Django project, add this code to its settings::
        
            GEARS_COMPILERS = {
                '.handlebars': 'gears_handlebars.HandlebarsCompiler',
            }
        
        .. _Handlebars: http://handlebarsjs.com/
        .. _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.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
