Skip to content

Commit

Permalink
Merge branch 'release/0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Walter Barbagallo committed Apr 1, 2016
2 parents 9b5005f + df5bc84 commit 7effeff
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
language: node_js
script: npm run coveralls
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Guidance

[![Coverage Status](https://coveralls.io/repos/github/turbometalskater/guidance/badge.svg?branch=master)](https://coveralls.io/github/turbometalskater/guidance?branch=master)
[![Build Status](https://travis-ci.org/turbometalskater/guidance.svg?branch=master)](https://travis-ci.org/turbometalskater/guidance)

A Rails like middleware for routes loading on expressjs applications.
(heavily inspired from http://guides.rubyonrails.org/routing.html)

Expand Down
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
{
"name": "guidance",
"version": "0.1.1",
"version": "0.2.0",
"description": "A Rails like routing system for Express.js",
"keywords": [
"routing",
"express",
"expressjs",
"rails"
],
"main": "./lib",
"scripts": {
"coverage": "istanbul cover _mocha -- ./test/ --recursive",
"coveralls": "npm run coverage -- --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v && rm -rf ./coverage",
"test": "mocha",
"test:watch": "npm test -- --watch"
},
Expand All @@ -20,9 +27,11 @@
"devDependencies": {
"async": "^2.0.0-rc.1",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"express": "^4.13.4",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"supertest": "^1.2.0"
},
"dependencies": {
Expand Down

0 comments on commit 7effeff

Please sign in to comment.