You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/12/11 19:51:01 UTC

[4/5] git commit: Merge branch 'fireos'

Merge branch 'fireos'


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

Branch: refs/heads/master
Commit: b8810fae154528e0295dc2db622e092e54d47711
Parents: 73f299c 62e615a
Author: Steven Gill <st...@gmail.com>
Authored: Wed Dec 11 10:49:10 2013 -0800
Committer: Steven Gill <st...@gmail.com>
Committed: Wed Dec 11 10:49:10 2013 -0800

----------------------------------------------------------------------
 README.md                              |  11 ++-
 main.js                                |   2 +-
 package.json                           |   2 +-
 spec/platforms/amazon-fireos.spec.js   | 139 ++++++++++++++++++++++++++++
 spec/plugins/DummyPlugin/plugin.xml    |  27 ++++++
 spec/plugins/FaultyPlugin/plugin.xml   |  27 ++++++
 spec/plugins/VariablePlugin/plugin.xml |   9 ++
 src/platforms.js                       |   1 +
 src/platforms/amazon-fireos.js         |  59 ++++++++++++
 9 files changed, 270 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b8810fae/README.md
----------------------------------------------------------------------
diff --cc README.md
index df95075,cd83a81..f5f4f53
--- a/README.md
+++ b/README.md
@@@ -30,13 -31,9 +31,13 @@@ You must have `git` on your PATH to be 
  * Windows Phone (7+8)
  
  ## Command Line Usage
 +    plugman help
 +
 +* Displays all available plugman commands
 +
  
-     plugman install --platform <ios|android|blackberry10|wp7|wp8> --project <directory> --plugin <name|url|path> [--plugins_dir <directory>] [--www <directory>] [--variable <name>=<value> [--variable <name>=<value> ...]]
-     plugman uninstall --platform <ios|android|blackberr10|wp7|wp8> --project <directory> --plugin <id> [--www <directory>] [--plugins_dir <directory>]
+     plugman install --platform <ios|amazon-fireos|android|blackberry10|wp7|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|blackberr10|wp7|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:
    * `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.

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b8810fae/src/platforms.js
----------------------------------------------------------------------