You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ka...@apache.org on 2014/11/12 17:45:10 UTC

[01/16] cordova-plugman git commit: CB-7661 Incremented package version to -dev

Repository: cordova-plugman
Updated Branches:
  refs/heads/0.22.x 203706aac -> d674ecf98


CB-7661 Incremented package version to -dev


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/3081241d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/3081241d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/3081241d

Branch: refs/heads/0.22.x
Commit: 3081241ddfd7f68fa93f72cdc3657f794d3f4c47
Parents: 203706a
Author: Steven Gill <st...@gmail.com>
Authored: Fri Oct 10 13:14:29 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Fri Oct 10 13:14:29 2014 -0700

----------------------------------------------------------------------
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/3081241d/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 4320cee..36ea60b 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.12",
+  "version": "0.22.13-dev",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[04/16] cordova-plugman git commit: Fix outdated plugin id in help.txt

Posted by ka...@apache.org.
Fix outdated plugin id in help.txt


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/0d92abfe
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/0d92abfe
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/0d92abfe

Branch: refs/heads/0.22.x
Commit: 0d92abfed8bcd300e411f8ac50e3b69158a952c4
Parents: b9b1fd0
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Thu Oct 30 14:17:15 2014 -0400
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Thu Oct 30 14:17:15 2014 -0400

----------------------------------------------------------------------
 doc/help.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/0d92abfe/doc/help.txt
----------------------------------------------------------------------
diff --git a/doc/help.txt b/doc/help.txt
index d4e4c64..275ef8d 100644
--- a/doc/help.txt
+++ b/doc/help.txt
@@ -77,9 +77,9 @@ Manage registry configuration
 Manage owners
 -------------
 
-    $ plugman owner ls org.apache.cordova.core.file
-    $ plugman owner add username org.apache.cordova.core.file
-    $ plugman owner rm username org.apache.cordova.core.file
+    $ plugman owner ls org.apache.cordova.file
+    $ plugman owner add username org.apache.cordova.file
+    $ plugman owner rm username org.apache.cordova.file
 
 Create A Plugin
 ---------------


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[05/16] cordova-plugman git commit: CB-7915 - Added tests for nopt

Posted by ka...@apache.org.
CB-7915 - Added tests for nopt


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/0e69d56d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/0e69d56d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/0e69d56d

Branch: refs/heads/0.22.x
Commit: 0e69d56d7d228b9260e93b960cf9e9ab40e4c4fb
Parents: 0d92abf
Author: Shazron Abdullah <sh...@apache.org>
Authored: Thu Oct 30 23:42:44 2014 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Thu Oct 30 23:42:44 2014 -0700

----------------------------------------------------------------------
 package.json                |  6 +++++-
 spec/nopt.interface.spec.js | 29 +++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/0e69d56d/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index a537c96..69fa203 100644
--- a/package.json
+++ b/package.json
@@ -25,11 +25,15 @@
     "rc": "0.5.2"
   },
   "devDependencies": {
+    "jshint": "2.5.8",
     "jasmine-node": "1.14.5"
   },
   "bin" : { "plugman" : "./main.js" },
   "scripts": {
-  },
+    "test": "npm run jasmine && npm run jshint",
+    "jshint": "node node_modules/jshint/bin/jshint src",
+    "jasmine": "jasmine-node --captureExceptions --color spec"
+  },  
   "contributors":[
     {
         "name":"Anis Kadri"

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/0e69d56d/spec/nopt.interface.spec.js
----------------------------------------------------------------------
diff --git a/spec/nopt.interface.spec.js b/spec/nopt.interface.spec.js
new file mode 100644
index 0000000..95f5b22
--- /dev/null
+++ b/spec/nopt.interface.spec.js
@@ -0,0 +1,29 @@
+/**
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+*/
+var nopt = require('nopt');
+
+describe('nopt interface check', function() {
+    // https://issues.apache.org/jira/browse/CB-7915
+    it('parameters without assignment operator should be assigned', function() {
+        var cli_opts = nopt(null, null, ['plugman', 'create', '--name', 'MyName', '--platform_id', 'MyId', '--platform_version','1.0.0']);
+        expect(cli_opts.name).toEqual('MyName');
+        expect(cli_opts.platform_id).toEqual('MyId');
+        expect(cli_opts.platform_version).toEqual('1.0.0');
+    });
+});


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[16/16] cordova-plugman git commit: CB-7988 Updated version and RELEASENOTES.md for release 0.22.16

Posted by ka...@apache.org.
CB-7988 Updated version and RELEASENOTES.md for release 0.22.16


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/d674ecf9
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/d674ecf9
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/d674ecf9

Branch: refs/heads/0.22.x
Commit: d674ecf98e6a7c00cff75fa94dea517cc0521d82
Parents: 934bfa7
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Wed Nov 12 10:53:06 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Wed Nov 12 10:54:18 2014 -0500

----------------------------------------------------------------------
 RELEASENOTES.md | 3 ++-
 package.json    | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/d674ecf9/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index d21cd69..c9d92a7 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -21,7 +21,8 @@
 
 # Cordova-plugman Release Notes
 
-### 0.22.15 (Nov 11, 2014)
+### 0.22.16 (Nov 13, 2014)
+* CB-7079 Allow special characters and digits in id when publishing to plugins registry
 * Update dependencies in package.json
 
 ### 0.22.12 (Oct 10, 2014)

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/d674ecf9/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index af002ec..910e5dd 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.16-dev",
+  "version": "0.22.16",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"
@@ -17,7 +17,7 @@
   },
   "engineStrict":true,
   "dependencies": {
-    "cordova-lib": "4.1.1",
+    "cordova-lib": "4.1.2",
     "nopt": "1.0.9",
     "underscore":"1.7.0",
     "q": "1.0.1",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[06/16] cordova-plugman git commit: CB-7915 - Upgrading "nopt" to 3.0.1 breaks plugman interface (revert back to 1.0.9)

Posted by ka...@apache.org.
CB-7915 - Upgrading "nopt" to 3.0.1 breaks plugman interface (revert back to 1.0.9)


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/6abb1875
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/6abb1875
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/6abb1875

Branch: refs/heads/0.22.x
Commit: 6abb18751dddcd0205685a8784122798cea1e968
Parents: 0e69d56
Author: Shazron Abdullah <sh...@apache.org>
Authored: Thu Oct 30 23:45:33 2014 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Thu Oct 30 23:45:33 2014 -0700

----------------------------------------------------------------------
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/6abb1875/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 69fa203..9337e31 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
   "engineStrict":true,
   "dependencies": {
     "cordova-lib": "4.0.0",
-    "nopt": "3.0.1",
+    "nopt": "1.0.9",
     "underscore":"1.7.0",
     "q": "1.0.1",
     "npm": "1.3.4",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[15/16] cordova-plugman git commit: CB-7988 Incremented package version to -dev

Posted by ka...@apache.org.
CB-7988 Incremented package version to -dev


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/934bfa73
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/934bfa73
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/934bfa73

Branch: refs/heads/0.22.x
Commit: 934bfa73a55114a360fd926079f475bdf59a345f
Parents: 93fd1e4
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Mon Nov 10 18:03:47 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Mon Nov 10 18:03:47 2014 -0500

----------------------------------------------------------------------
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/934bfa73/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index d3460dc..af002ec 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.15",
+  "version": "0.22.16-dev",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[11/16] cordova-plugman git commit: CB-7988 Incremented package version to -dev

Posted by ka...@apache.org.
CB-7988 Incremented package version to -dev


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/712b7398
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/712b7398
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/712b7398

Branch: refs/heads/0.22.x
Commit: 712b7398b8b02bc7c493445fad3327cf18ab680c
Parents: e97efbe
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 15:44:28 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 15:44:28 2014 -0500

----------------------------------------------------------------------
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/712b7398/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 19cc435..294cbf1 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.13",
+  "version": "0.22.14-dev",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[12/16] cordova-plugman git commit: CB-7988 Updated version and RELEASENOTES.md for release 0.22.14

Posted by ka...@apache.org.
CB-7988 Updated version and RELEASENOTES.md for release 0.22.14

Take 3. npm won't publish anything with version that was already
published before, even with rc tag. So bumping version to 0.22.14


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/cdb84dda
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/cdb84dda
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/cdb84dda

Branch: refs/heads/0.22.x
Commit: cdb84dda53e969f5ce4558f89de00505e5f0ee45
Parents: 712b739
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 16:11:33 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 16:11:33 2014 -0500

----------------------------------------------------------------------
 RELEASENOTES.md | 2 +-
 package.json    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/cdb84dda/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 26222cb..243c15d 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -21,7 +21,7 @@
 
 # Cordova-plugman Release Notes
 
-### 0.22.13 (Nov 7, 2014)
+### 0.22.14 (Nov 7, 2014)
 * Update dependencies in package.json
 
 ### 0.22.12 (Oct 10, 2014)

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/cdb84dda/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 294cbf1..0c53678 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.14-dev",
+  "version": "0.22.14",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[13/16] cordova-plugman git commit: CB-7988 Incremented package version to -dev

Posted by ka...@apache.org.
CB-7988 Incremented package version to -dev


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/4ef0289d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/4ef0289d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/4ef0289d

Branch: refs/heads/0.22.x
Commit: 4ef0289d46e1cc8cee1aadeffd63e25663ceba30
Parents: cdb84dd
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 16:26:30 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 16:26:30 2014 -0500

----------------------------------------------------------------------
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/4ef0289d/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 0c53678..4709749 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.14",
+  "version": "0.22.15-dev",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[08/16] cordova-plugman git commit: CB-7988 Updated version and RELEASENOTES.md for release 0.22.13

Posted by ka...@apache.org.
CB-7988 Updated version and RELEASENOTES.md for release 0.22.13


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/1d06e98f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/1d06e98f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/1d06e98f

Branch: refs/heads/0.22.x
Commit: 1d06e98f3f2e5460845b2f1f887d309b0e0ad2dc
Parents: 8058b08
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 11:38:43 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 11:38:43 2014 -0500

----------------------------------------------------------------------
 RELEASENOTES.md | 3 +++
 package.json    | 6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/1d06e98f/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 135d1e5..26222cb 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -21,6 +21,9 @@
 
 # Cordova-plugman Release Notes
 
+### 0.22.13 (Nov 7, 2014)
+* Update dependencies in package.json
+
 ### 0.22.12 (Oct 10, 2014)
 * Pinned dependencies
 * CB-7383 Updated version and RELEASENOTES.md for release 0.22.10

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/1d06e98f/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 9337e31..34e629e 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.13-dev",
+  "version": "0.22.13",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"
@@ -17,7 +17,7 @@
   },
   "engineStrict":true,
   "dependencies": {
-    "cordova-lib": "4.0.0",
+    "cordova-lib": "4.0.1",
     "nopt": "1.0.9",
     "underscore":"1.7.0",
     "q": "1.0.1",
@@ -33,7 +33,7 @@
     "test": "npm run jasmine && npm run jshint",
     "jshint": "node node_modules/jshint/bin/jshint src",
     "jasmine": "jasmine-node --captureExceptions --color spec"
-  },  
+  },
   "contributors":[
     {
         "name":"Anis Kadri"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[10/16] cordova-plugman git commit: CB-7988 Updated version and RELEASENOTES.md for release 0.22.13

Posted by ka...@apache.org.
CB-7988 Updated version and RELEASENOTES.md for release 0.22.13

Take 2. Updating deps for with cordova-lib@4.1.0 instead of 4.0.1


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/e97efbea
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/e97efbea
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/e97efbea

Branch: refs/heads/0.22.x
Commit: e97efbea8fb25cac99f555a9bd45276797ed638d
Parents: b4067ec
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 15:27:33 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 15:39:52 2014 -0500

----------------------------------------------------------------------
 package.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/e97efbea/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 0756388..19cc435 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.14-dev",
+  "version": "0.22.13",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"
@@ -17,7 +17,7 @@
   },
   "engineStrict":true,
   "dependencies": {
-    "cordova-lib": "4.0.1",
+    "cordova-lib": "4.1.0",
     "nopt": "1.0.9",
     "underscore":"1.7.0",
     "q": "1.0.1",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[14/16] cordova-plugman git commit: CB-7988 Updated version and RELEASENOTES.md for release 0.22.15

Posted by ka...@apache.org.
CB-7988 Updated version and RELEASENOTES.md for release 0.22.15


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/93fd1e49
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/93fd1e49
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/93fd1e49

Branch: refs/heads/0.22.x
Commit: 93fd1e49aa69ec05d65f750cd88b86156ce98beb
Parents: 4ef0289
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Mon Nov 10 17:54:28 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Mon Nov 10 17:54:28 2014 -0500

----------------------------------------------------------------------
 RELEASENOTES.md | 2 +-
 package.json    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/93fd1e49/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 243c15d..d21cd69 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -21,7 +21,7 @@
 
 # Cordova-plugman Release Notes
 
-### 0.22.14 (Nov 7, 2014)
+### 0.22.15 (Nov 11, 2014)
 * Update dependencies in package.json
 
 ### 0.22.12 (Oct 10, 2014)

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/93fd1e49/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 4709749..d3460dc 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.15-dev",
+  "version": "0.22.15",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"
@@ -17,7 +17,7 @@
   },
   "engineStrict":true,
   "dependencies": {
-    "cordova-lib": "4.1.0",
+    "cordova-lib": "4.1.1",
     "nopt": "1.0.9",
     "underscore":"1.7.0",
     "q": "1.0.1",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[09/16] cordova-plugman git commit: CB-7988 Incremented package version to -dev

Posted by ka...@apache.org.
CB-7988 Incremented package version to -dev


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/b4067ecf
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/b4067ecf
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/b4067ecf

Branch: refs/heads/0.22.x
Commit: b4067ecf4430c0c48c4f95b25a110ec9c525377c
Parents: 1d06e98
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 11:52:54 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 11:52:54 2014 -0500

----------------------------------------------------------------------
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b4067ecf/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 34e629e..0756388 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
   "author": "Andrew Lunny <al...@gmail.com>",
   "name": "plugman",
   "description": "install/uninstall Cordova plugins",
-  "version": "0.22.13",
+  "version": "0.22.14-dev",
   "repository": {
     "type": "git",
     "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[02/16] cordova-plugman git commit: Make plugin id clearer in --help for plugman info

Posted by ka...@apache.org.
Make plugin id clearer in --help for plugman info

close #79


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/541ea4e0
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/541ea4e0
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/541ea4e0

Branch: refs/heads/0.22.x
Commit: 541ea4e0209a8a1de7368bbed7c05e23e8477c82
Parents: 3081241
Author: Gorkem Ercan <go...@gmail.com>
Authored: Fri Sep 26 22:03:53 2014 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Oct 21 13:24:46 2014 -0400

----------------------------------------------------------------------
 doc/help.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/541ea4e0/doc/help.txt
----------------------------------------------------------------------
diff --git a/doc/help.txt b/doc/help.txt
index fe3e161..d4e4c64 100644
--- a/doc/help.txt
+++ b/doc/help.txt
@@ -66,7 +66,7 @@ Search for a plugin
 Display plugin information
 -----------------------
 
-    $ plugman info plugin
+    $ plugman info <pluginid>
 
 Manage registry configuration
 -----------------------------


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[07/16] cordova-plugman git commit: CB-7894 - Updated docs (closes #80)

Posted by ka...@apache.org.
CB-7894 - Updated docs (closes #80)

Removed --uninstall, added docs for owner and some other cleanups

Signed-off-by: Shazron Abdullah <sh...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/8058b082
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/8058b082
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/8058b082

Branch: refs/heads/0.22.x
Commit: 8058b082f1dfa4feeb586a41ea0a3b52ec473951
Parents: 6abb187
Author: johnwargo <jo...@johnwargo.com>
Authored: Thu Oct 30 15:19:04 2014 -0400
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Fri Oct 31 00:05:39 2014 -0700

----------------------------------------------------------------------
 README.md    |  33 +++++++++++++-----
 doc/help.txt | 102 +++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 96 insertions(+), 39 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/8058b082/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 0c42204..ced43bd 100644
--- a/README.md
+++ b/README.md
@@ -45,28 +45,34 @@ You must have `git` on your PATH to be able to install plugins directly from rem
 
 ## Supported Platforms
 
-* iOS
 * Amazon Fire OS
 * Android
 * BlackBerry 10
+* iOS
 * Tizen
 * Windows Phone 8
 * Windows 8
 
 ## Command Line Usage
+Display all available plugman commands:
+
     plugman help
 
-* Displays all available plugman commands
+### Plugin Management
 
+Install a plugin into a Cordova project: 
 
     plugman install --platform <ios|amazon-fireos|android|blackberry10|wp8> --project <directory> --plugin <name|url|path> [--plugins_dir <directory>] [--www <directory>] [--variable <name>=<value> [--variable <name>=<value> ...]]
-    plugman uninstall --platform <ios|amazon-fireos|android|blackberry10|wp8> --project <directory> --plugin <id> [--www <directory>] [--plugins_dir <directory>]
 
-* Using minimum parameters, installs a plugin into a cordova project. You must specify a platform and cordova project location for that platform. You also must specify a plugin, with the different `--plugin` parameter forms being:
+Uninstall a Plugin from a Cordova project:
+
+	plugman uninstall --platform <ios|amazon-fireos|android|blackberry10|wp8> --project <directory> --plugin <id> [--www <directory>] [--plugins_dir <directory>]
+
+For each command (install and uninstall), you must specify a platform and Cordova project location for that platform. You also must specify a plugin, with the different `--plugin` parameter forms being:
+
   * `name`: The directory name where the plugin contents exist. This must be an existing directory under the `--plugins_dir` path (see below for more info) or a plugin in the Cordova registry.
   * `url`: A URL starting with https:// or git://, pointing to a valid git repository that is clonable and contains a `plugin.xml` file. The contents of this repository would be copied into the `--plugins_dir`.
   * `path`: A path to a directory containing a valid plugin which includes a `plugin.xml` file. This path's contents will be copied into the `--plugins_dir`.
-* `--uninstall`: Uninstalls an already-`--install`'ed plugin from a cordova project. Specify the plugin ID.
 
 Other parameters:
 
@@ -74,16 +80,27 @@ Other parameters:
 * `--www` defaults to the project's `www` folder location, but can be any directory that is to be used as cordova project application web assets.
 * `--variable` allows to specify certain variables at install time, necessary for certain plugins requiring API keys or other custom, user-defined parameters. Please see the [plugin specification](plugin_spec.md) for more information.
 
+### Registry Search
+
+Search the [Plugin registry](http://plugins.cordova.io) for plugin id's that match the given space separated list of keywords.
 
     plugman search <plugin keywords>
 
-* Search the [Plugin registry](http://plugins.cordova.io) for plugin id's that match the given space separated list of keywords.
+### Configuration Management:
 
+Display the current list of configuration settings:
+
+	plugman config ls
+
+Display the current repository endpoint:
 
-    plugman config set registry <url-to-registry>
     plugman config get registry
 
-* Get or set the URL of the current plugin registry that plugman is using. Generally you should leave this set at http://registry.cordova.io unless you want to use a third party plugin registry.
+Set the registry endpoint:
+
+    plugman config set registry <url-to-registry>
+
+You should leave this set to http://registry.cordova.io, unless you want to use a third party plugin registry.
 
 ## Node Module Usage
 This section details how to consume Plugman as a node module and is only for Cordova tool authors and other hackers. You should not need to read this section if you are just using Plugman to manage a Cordova project.

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/8058b082/doc/help.txt
----------------------------------------------------------------------
diff --git a/doc/help.txt b/doc/help.txt
index 275ef8d..a93b1d3 100644
--- a/doc/help.txt
+++ b/doc/help.txt
@@ -3,6 +3,21 @@ plugman manages plugin.xml-compatible cordova plugins into cordova-generated pro
 Usage
 =====
 
+To display this help file, use one of the following:
+
+$ plugman --help
+$ plugman -h
+
+To display the plugman version, use one of the following:
+
+ $ plugman --version
+ $ plugman -v 
+
+Optional flags
+--------------
+
+ --debug|-d    : Verbose mode
+ 
 Install a plugin
 ----------------
 
@@ -15,30 +30,24 @@ Parameters:
  - plugin <plugin>: One of a path reference to a local copy of a plugin, or a remote https: or git: URL pointing to a cordova plugin (optionally append #branch:subdir) or a plugin ID from http://plugins.cordova.io
  - variable NAME=VALUE: Some plugins require install-time variables to be defined. These could be things like API keys/tokens or other app-specific variables.
 
-Uninstall a plugin
-------------------
-
-    $ plugman uninstall --platform <platform> --project <directory> --plugin <plugin-id>
-
-Parameters:
- - plugin <plugin-id>: The plugin to remove, identified by its id (see the plugin.xml's <plugin id> attribute)
-
-Optional parameters
--------------------
+ Optional parameters:
 
  - www <directory>: www assets for the plugin will be installed into this directory. Default is to install into the standard www directory for the platform specified
  - plugins_dir <directory>: a copy of the plugin will be stored in this directory. Default is to install into the <project directory>/plugins folder
  - searchpath <directory>: when looking up plugins by ID, look in this directory and each of its subdirectories for the plugin before hitting the registry.
    Multiple search paths can be used by either specifying the flag multiple times, or by separating paths with a delimiter (: on 'nix, ; on Windows).
 
-Optional flags
---------------
+Uninstall a plugin
+------------------
 
- --debug|-d    : Verbose mode
+    $ plugman uninstall --platform <platform> --project <directory> --plugin <plugin-id>
 
- --help|-h     : Displays this message
+Parameters:
+
+ - platform <platform>: One of android, ios, blackberry10, wp8, or windows8
+ - project <directory>: Path reference to a cordova-generated project of the platform you specify
+ - plugin <plugin-id>: The plugin to remove, identified by its id (see the plugin.xml's <plugin id> attribute)
 
- --version|-v  : Displays version
 
 Interacting with the registry
 =============================
@@ -64,50 +73,81 @@ Search for a plugin
     $ plugman search <keyword1 keyword2 ...>
 
 Display plugin information
------------------------
+--------------------------
 
-    $ plugman info <pluginid>
+    $ plugman info <pluginID>
 
 Manage registry configuration
 -----------------------------
+Display current configuration settings:
+
+    $ plugman config ls
+
+Display the current registry URL:
 
-    $ plugman config set registry http://localhost:5984/registry/_design/app/_rewrite
     $ plugman config get registry
 
-Manage owners
+Set registry URL: 
+
+    $ plugman config set registry <url>
+
+Example:
+
+    $ plugman config set registry http://localhost:5984/registry/_design/app/_rewrite
+    
+Manage Owners
 -------------
+Plugin owners are allowed to publish updates to a plugin. To display a list of owners for a plugin, use:
+
+    $ plugman owner ls <pluginID>
+
+Example: 
+   
+    $ plugman owner ls org.apache.cordova.core.file
+
+To add an owner to a plugin's in the repository, use:
+
+    $ plugman owner add <username> <pluginID>
+
+Example:
 
-    $ plugman owner ls org.apache.cordova.file
-    $ plugman owner add username org.apache.cordova.file
-    $ plugman owner rm username org.apache.cordova.file
+    $ plugman owner add joeuser org.apache.cordova.core.file
+
+To remove an owner from the plugin in the registry, use:
+
+    $ plugman owner rm <username> <pluginID>
+
+Example: 
+
+    $ plugman owner rm joeuser org.apache.cordova.core.file
 
 Create A Plugin
 ---------------
 
-    $ plugman create --name <Plugin Name> --plugin_id <Plugin ID> --plugin_version <Plugin Version> [--path <Directory Path>] [--variable NAME=VALUE]
+    $ plugman create --name <pluginName> --plugin_id <pluginID> --plugin_version <version> [--path <directory>] [--variable NAME=VALUE]
 
 Parameters:
 
- - <Plugin Name>: A Name for a Plugin
- - <Plugin ID>: An ID for the plugin, ex: org.bar.foo
- - <Plugin Version>: A version for the plugin, ex: 0.0.0
+ - <pluginName>: The name of the plugin
+ - <pluginID>: An ID for the plugin, ex: org.bar.foo
+ - <version>: A version for the plugin, ex: 0.0.1
+ - <directory>: An absolute or relative path for the directory where the plugin project will be created
  - variable NAME=VALUE: Extra variables such as description or Author
 
 Add a Platform to a Plugin
 --------------------------
 
-    $ plugman platform add --platform_name <Platform>
+    $ plugman platform add --platform_name <platform>
 
 Parameters:
 
-- <Platform>: One of android, ios
+- <platform>: One of android, ios
 
 Remove a Platform from a Plugin
 -------------------------------
 
-    $ plugman platform remove --platform_name <Platform>
+    $ plugman platform remove --platform_name <platform>
 
 Parameters:
 
-- <Platform>: One of android, ios
-
+- <platform>: One of android, ios


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[03/16] cordova-plugman git commit: Update dependencies in package.json

Posted by ka...@apache.org.
Update dependencies in package.json

Updated everything shown as outdated by `npm outdated --depth=0`
(except npm, too early for npm 2.x).


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/b9b1fd0e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/b9b1fd0e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/b9b1fd0e

Branch: refs/heads/0.22.x
Commit: b9b1fd0e9991056ac9871a375917b6dce1bb2ca7
Parents: 541ea4e
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Thu Oct 30 14:11:07 2014 -0400
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Thu Oct 30 14:11:07 2014 -0400

----------------------------------------------------------------------
 package.json | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b9b1fd0e/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 36ea60b..a537c96 100644
--- a/package.json
+++ b/package.json
@@ -18,11 +18,11 @@
   "engineStrict":true,
   "dependencies": {
     "cordova-lib": "4.0.0",
-    "nopt": "1.0.9",
-    "underscore":"1.4.4",
-    "q": "0.9.7",
+    "nopt": "3.0.1",
+    "underscore":"1.7.0",
+    "q": "1.0.1",
     "npm": "1.3.4",
-    "rc": "0.3.0"
+    "rc": "0.5.2"
   },
   "devDependencies": {
     "jasmine-node": "1.14.5"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org