Skip to content

Commit

Permalink
TravisCI integration.
Browse files Browse the repository at this point in the history
  • Loading branch information
braddunbar committed Sep 10, 2012
1 parent 3b08fb8 commit fcd3898
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
raw
*.sw?
.DS_Store
node_modules
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: node_js
node_js:
- 0.8
11 changes: 11 additions & 0 deletions grunt.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = function(grunt) {

grunt.registerTask('default', 'qunit');

grunt.initConfig({
qunit: {
index: 'test/index.html'
}
});

};
24 changes: 15 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"name" : "backbone",
"description" : "Give your JS App some Backbone with Models, Views, Collections, and Events.",
"url" : "http://backbonejs.org",
"keywords" : ["util", "functional", "server", "client", "browser"],
"author" : "Jeremy Ashkenas <jeremy@documentcloud.org>",
"dependencies" : {
"underscore" : ">=1.3.1"
"name" : "backbone",
"description" : "Give your JS App some Backbone with Models, Views, Collections, and Events.",
"url" : "http://backbonejs.org",
"keywords" : ["util", "functional", "server", "client", "browser"],
"author" : "Jeremy Ashkenas <jeremy@documentcloud.org>",
"dependencies" : {
"underscore": ">=1.3.3"
},
"main" : "backbone.js",
"version" : "0.9.2"
"devDependencies": {
"grunt": "~0.3.15"
},
"scripts" : {
"test": "./node_modules/grunt/bin/grunt"
},
"main" : "backbone.js",
"version" : "0.9.2"
}

0 comments on commit fcd3898

Please sign in to comment.