├── .gitignore ├── .travis.yml ├── README.md ├── bin └── emo ├── emo.coffee ├── license.txt ├── package.json └── spec └── basic_spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .emo 2 | node_modules 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zischwartz/emo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zischwartz/emo/HEAD/README.md -------------------------------------------------------------------------------- /bin/emo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zischwartz/emo/HEAD/bin/emo -------------------------------------------------------------------------------- /emo.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zischwartz/emo/HEAD/emo.coffee -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zischwartz/emo/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zischwartz/emo/HEAD/package.json -------------------------------------------------------------------------------- /spec/basic_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zischwartz/emo/HEAD/spec/basic_spec.coffee --------------------------------------------------------------------------------