bump version and add basic developer instructions

This commit is contained in:
John Bintz 2011-12-01 10:01:06 -05:00
parent 5d504570fd
commit ab1994696d
2 changed files with 14 additions and 1 deletions

View File

@ -5,6 +5,19 @@ Run your specs at sonic boom speed! No pesky reload button or page rendering slo
http://johnbintz.github.com/jasmine-headless-webkit/ has the most up-to-date information on using http://johnbintz.github.com/jasmine-headless-webkit/ has the most up-to-date information on using
this project. You can see the source of that site on the gh-pages branch. this project. You can see the source of that site on the gh-pages branch.
## For those who want to hack on the project...
The best way to get everything running that you need for development and testing is
to use Guard:
``` bash
bundle install
bundle exec guard
... build Qt runner ...
... compile CoffeeScript to JS ...
... run RSpec and JHW ...
```
## License ## License
* Copyright (c) 2011 John Bintz * Copyright (c) 2011 John Bintz

View File

@ -1,5 +1,5 @@
module Jasmine module Jasmine
module Headless module Headless
VERSION = "0.8.0.alpha.1" VERSION = "0.8.0"
end end
end end