Skip to content

Commit

Permalink
Add support for travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
my8bird committed Feb 1, 2012
1 parent ceee3fc commit 630e5dd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
node_js:
- 0.6
- 0.7
7 changes: 5 additions & 2 deletions README.markdown → README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[![Build Status](https://secure.travis-ci.org/my8bird/nodejs-sandbox.png?branch=master)](http://travis-ci.org/my8bird/nodejs-sandbox)


Install
-------
git clone [email protected]:my8bird/nodejs-sandbox.git
git clone [email protected]:my8bird/nodejs-sandbox.git
cd nodejs-sandbox
npm link

Expand All @@ -14,4 +17,4 @@ Usage
sandbox.on('start', function() {console.log('start'); });
sandbox.on('finish', function() {console.log('finish'); });

@see _example.js for running code.
@see _example.js for running code.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@
"homepage": "https://github.com/my8bird/nodejs-sandbox",
"version": "0.0.1",
"author": {
"name": "Nathan Landis",
"name": "Nathan Landis",
"email": "[email protected]"},
"main": "main.js",
"repository" : {
"repository" : {
"type" : "git",
"url" : "https://github.com/my8bird/nodejs-sandbox.git"
},
"keywords": [],
"bugs" : { "url" : "https://github.com/my8bird/nodejs-sandbox/issues" },
"dependencies":

"scripts": {
"test": "./node_modules/jasmine-node/bin/jasmine-node tests/"
},

"dependencies":
{
"jasmine-node": ">= 1.0.12",
"docco": ">=0.3.0"
Expand Down

0 comments on commit 630e5dd

Please sign in to comment.