-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
22 lines (15 loc) · 661 Bytes
/
README
File metadata and controls
22 lines (15 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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!