Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gregmalcolm/guard-jasmine-coffeescript

Implemented instructions for Jasmine with Coffeescript through guard-coffeescript
https://github.com/gregmalcolm/guard-jasmine-coffeescript

Last synced: 4 months ago
JSON representation

Implemented instructions for Jasmine with Coffeescript through guard-coffeescript

Awesome Lists containing this project

README

        

Implemented the instructions here:
https://gist.github.com/673967

NOTE: I didn't write the gist. I'm just following the instructions...

This has been applied on a brand new rails projects, giving jasmine with coffeescript, with
the coffeescript getting automatically recomipled via Guard.

To setup:
bundle install
bundle db:migrate

To run specs you need to start to proceses:
bundle exec guard
bundle exec jasmine

Then from a browser go to:
http://localhost:8888

For more information on the Guard coffeesccript plugin https://github.com/guard/guard-coffeescript

Thanks to Michael Kessler (aka netzpirat) for the plugin and demo instructions!