diff options
author | Rob Loach <robloach@gmail.com> | 2014-10-01 08:10:43 -0400 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2014-10-01 08:10:43 -0400 |
commit | 888ad165d38b34886914588457f8358e35287ad8 (patch) | |
tree | 76fcec1cea6c105bdfbb8e3b40c760cd94316039 | |
parent | 1363980062265ba6653ff693f2b7d3928e37a646 (diff) | |
download | jquery-once-888ad165d38b34886914588457f8358e35287ad8.zip jquery-once-888ad165d38b34886914588457f8358e35287ad8.tar.gz jquery-once-888ad165d38b34886914588457f8358e35287ad8.tar.bz2 |
Update documentation
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | README.md | 26 | ||||
-rw-r--r-- | jquery.once.js | 2 | ||||
-rw-r--r-- | package.json | 2 |
4 files changed, 17 insertions, 14 deletions
diff --git a/.travis.yml b/.travis.yml index 194b862..efd3a59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,6 @@ install: - npm install script: "npm test" node_js: - - "0.8" - "0.10" cache: directories: @@ -84,17 +84,23 @@ $('div.calendar').once(function() { ``` -## Develop +## Development -Leverage [npm](http://npmjs.org), [grunt](http://gruntjs.com), -[qunit](http://qunitjs.com) and [projectz](http://github.com/bevry/projectz): +Install dependencies through [npm](http://npmjs.org): -``` bash -$ npm install -$ npm test -$ grunt release -$ npm run-script projectz -``` + npm install + +Use [Grunt](http://gruntjs.com) to run [qunit](http://qunitjs.com) tests: + + grunt jshint qunit + +Build the project with [Grunt](http://gruntjs.com): + + grunt release + +Update project documentation with [Projectz](https://github.com/bevry/projectz): + + npm run-script projectz <!-- HISTORY/ --> @@ -146,5 +152,3 @@ These amazing people have contributed code to this project: [Become a contributor!](https://github.com/RobLoach/jquery-once/blob/master/CONTRIBUTING.md#files) <!-- /BACKERS --> - - diff --git a/jquery.once.js b/jquery.once.js index 5faa4c0..f419baf 100644 --- a/jquery.once.js +++ b/jquery.once.js @@ -1,5 +1,5 @@ /** - * jQuery Once Plugin 2.0.0-alpha.1 + * jQuery Once Plugin 2.0.0-alpha.3 * http://github.com/robloach/jquery-once * * Dual licensed under the MIT and GPL licenses: diff --git a/package.json b/package.json index bc5b77f..1e36858 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "jquery-once", "title": "jQuery Once", "description": "Act on jQuery elements only once.", - "version": "2.0.0-alpha.2", + "version": "2.0.0-alpha.3", "keywords": [ "jquery" ], |