Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
Prepare for the opening of the source.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Mar 19, 2013
1 parent 49d35bc commit 39dc1e6
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 99 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules
npm-debug.log

*.iws
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: node_js

node_js:
- "0.10"
- "0.8"

before_script:
- npm install -g grunt-cli

script: grunt --verbose
14 changes: 14 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
'use strict';

module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
qunit: {
all: ['test.html']
}
});

grunt.loadNpmTasks('grunt-contrib-qunit');

grunt.registerTask('default', ['qunit']);
};
Binary file removed jirafy.crx
Binary file not shown.
10 changes: 0 additions & 10 deletions jirafy.iml

This file was deleted.

66 changes: 0 additions & 66 deletions jirafy.ipr

This file was deleted.

8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "jirafy",
"version": "1.0.0",
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-qunit": "~0.1.0"
}
}
14 changes: 0 additions & 14 deletions package.sh

This file was deleted.

9 changes: 0 additions & 9 deletions updates.xml

This file was deleted.

0 comments on commit 39dc1e6

Please sign in to comment.