updating plugin spec
Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/db03ca7d Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/db03ca7d Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/db03ca7d Branch: refs/heads/master Commit: db03ca7d24689e129ec8c268f0f9c4fc2eeb0b22 Parents: 4d4a474 Author: Anis Kadri <[email protected]> Authored: Mon Jun 17 16:08:32 2013 -0700 Committer: Anis Kadri <[email protected]> Committed: Thu Jul 11 13:54:18 2013 -0700 ---------------------------------------------------------------------- plugin_spec.md | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/db03ca7d/plugin_spec.md ---------------------------------------------------------------------- diff --git a/plugin_spec.md b/plugin_spec.md index a58198e..f5d26a7 100644 --- a/plugin_spec.md +++ b/plugin_spec.md @@ -70,12 +70,46 @@ If no `<engine>` tags are specified, plugman will attempt to install into the sp ## <name> element A human-readable name for the plugin. The text content of the element contains -the name of the plugin. An example: +the name of the plugin. Has to be lower case and cannot contain spaces or special characters. An example: - <name>Foo</name> + <name>foo</name> This element does not (yet) handle localization. +## <description> element + +A human-readable description for the plugin. The text content of the element contains +the description of the plugin. An example: + + <description>foo plugin description</description> + +This element does not (yet) handle localization. + +## <author> element + +Plugin author name. The text content of the element contains +the name of the plugin author. An example: + + <author>foo plugin description</author> + +## <keywords> element + +Plugin keywords. The text content of the element contains comma separated keywords to describe the plugin. An example: + + <keywords>foo,bar</keywords> + +## <license> element + +Plugin license. The text content of the element contains the plugin license. An example: + + <keywords>foo,bar</keywords> + +## <license> element + +Plugin license. The text content of the element contains the plugin license. An example: + + <license>Apache</license> + ## <asset> element One or more elements listing the files or directories to be copied into a
