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.7.1
Install gears-coffeescript with pip:
$ pip install gears-coffeescript
gears-coffeescript requires node.js to be installed in your system.
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',
}