summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Loach <robloach@gmail.com>2014-10-01 08:10:43 -0400
committerRob Loach <robloach@gmail.com>2014-10-01 08:10:43 -0400
commit888ad165d38b34886914588457f8358e35287ad8 (patch)
tree76fcec1cea6c105bdfbb8e3b40c760cd94316039
parent1363980062265ba6653ff693f2b7d3928e37a646 (diff)
downloadjquery-once-888ad165d38b34886914588457f8358e35287ad8.zip
jquery-once-888ad165d38b34886914588457f8358e35287ad8.tar.gz
jquery-once-888ad165d38b34886914588457f8358e35287ad8.tar.bz2
Update documentation
-rw-r--r--.travis.yml1
-rw-r--r--README.md26
-rw-r--r--jquery.once.js2
-rw-r--r--package.json2
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:
diff --git a/README.md b/README.md
index ee3f627..5427e00 100644
--- a/README.md
+++ b/README.md
@@ -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"
],