-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from johanblomgren/v0.5.0
Code changes for V0.5.0
- Loading branch information
Showing
11 changed files
with
494 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"browser": true | ||
, "devel": true | ||
, "bitwise": true | ||
, "undef": true | ||
, "trailing": true | ||
, "quotmark": false | ||
, "indent": 4 | ||
, "unused": "vars" | ||
, "latedef": "nofunc" | ||
, "globals": { | ||
"module": false, | ||
"exports": false, | ||
"require": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
language: objective-c | ||
node_js: | ||
- "4.2" | ||
install: | ||
- npm install -g cordova | ||
- npm install -g ios-sim | ||
- npm install -g ios-deploy | ||
- npm install -g cordova-paramedic | ||
- npm install | ||
script: | ||
- npm test | ||
- cordova-paramedic --platform ios --plugin /Users/travis/build/johanblomgren/cordova-plugin-indexappcontent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "cordova-plugin-indexappcontent", | ||
"version": "0.1.0", | ||
"version": "0.5.0", | ||
"description": "Enable on-device searchable app content indexing.", | ||
"cordova": { | ||
"id": "cordova-plugin-indexappcontent", | ||
|
@@ -25,9 +25,16 @@ | |
"version": ">=3.5.0" | ||
} | ||
], | ||
"scripts": { | ||
"test": "npm run jshint", | ||
"jshint": "node node_modules/jshint/bin/jshint www && node node_modules/jshint/bin/jshint src && node node_modules/jshint/bin/jshint tests" | ||
}, | ||
"author": "Johan Blomgren <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/johanblomgren/cordova-plugin-indexappcontent/issues" | ||
}, | ||
"devDependencies": { | ||
"jshint": "^2.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.