Remove remaining respec references.

Fixes #544
This commit is contained in:
kpdecker
2013-06-01 23:46:34 -05:00
parent adda0569e0
commit 7b1ad8aa38
4 changed files with 5 additions and 29 deletions
+5 -12
View File
@@ -362,22 +362,15 @@ To build Handlebars.js you'll need a few things installed.
* Node.js
* Ruby
* therubyracer, for running tests - `gem install therubyracer`
* rspec, for running tests - `gem install rspec`
* Rake
There's a Gemfile in the repo, so you can run `bundle` to install rspec
and therubyracer if you've got bundler installed.
There's a Gemfile in the repo, so you can run `bundle` to install rake
if you've got bundler installed.
To build Handlebars.js from scratch, you'll want to run `rake compile`
in the root of the project. That will build Handlebars and output the
results to the dist/ folder. To run tests, run `rake test`. You can also
run our set of benchmarks with `rake bench`. Node tests can be run with
`npm test` or `rake npm_test`. The default rake target will compile and
run both test suites.
Some environments, notably Windows, have issues running therubyracer. Under these
envrionments the `rake compile` and `npm test` should be sufficient to test
most handlebars functionality.
results to the dist/ folder. To run tests, run `rake test` or `npm test.
You can also run our set of benchmarks with `rake bench`.
If you notice any problems, please report them to the GitHub issue tracker at
[http://github.com/wycats/handlebars.js/issues](http://github.com/wycats/handlebars.js/issues).