3709889f by Michael Richards

Add section to the README for building and testing.

1 parent bc78f548
Showing 1 changed file with 13 additions and 1 deletions
......@@ -98,4 +98,16 @@ So let's say we wanted a `data-color` binding that sets the element's colour. He
- data-unchecked
- data-selected
- data-*[attribute]*
- data-on-*[event]*
\ No newline at end of file
- data-on-*[event]*
## Building and Testing
Before proceeding, make sure to run `npm install` so that you have all the development dependencies.
#### Building
Rivets.js uses [grunt](http://gruntjs.com/) as the build tool. Run `grunt` from within the project root and it will compile + minify into */lib* whenever the source file is saved. You can also run `grunt build` to rebuild the project manually.
#### Testing
Rivets.js uses [Jasmine](http://pivotal.github.com/jasmine/) as the testing framework. You can run the tests by opening the *test.html* file.
......