Skip to content

Commit

Permalink
v0.2.0 init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kilianc committed May 1, 2012
1 parent f9f38b0 commit 907aaab
Show file tree
Hide file tree
Showing 29 changed files with 2,027 additions and 349 deletions.
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

1 change: 1 addition & 0 deletions .jshint
@@ -0,0 +1 @@
jshint indent:2, boss:true, browser:true, curly:true, debug:true, devel:true, eqeqeq: true, es5:true, expr:true, nodejs:true, newcap:true, passfail:true, triling:true, undef:true, white:true
3 changes: 3 additions & 0 deletions .travis.yml
@@ -0,0 +1,3 @@
language: node_js
node_js:
- 0.6
18 changes: 18 additions & 0 deletions Makefile
@@ -0,0 +1,18 @@
REPORTER = spec

test:
@NODE_ENV=test ./node_modules/.bin/mocha test/*-test.js test/*/*-test.js $(OPT) --reporter $(REPORTER)

test-bail:
$(MAKE) test OPT=--bail

test-cov:
$(MAKE) lib-cov
@APISERVER_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
@open -g coverage.html

lib-cov:
@rm -rf lib-cov
@jscoverage lib lib-cov

.PHONY: test test-bail test-cov lib-cov

0 comments on commit 907aaab

Please sign in to comment.