Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6017E17293 for ; Mon, 27 Oct 2014 14:51:42 +0000 (UTC) Received: (qmail 34115 invoked by uid 500); 27 Oct 2014 14:51:42 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 34091 invoked by uid 500); 27 Oct 2014 14:51:42 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 34031 invoked by uid 99); 27 Oct 2014 14:51:42 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Oct 2014 14:51:42 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E9194909C8F; Mon, 27 Oct 2014 14:51:41 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kamrik@apache.org To: commits@cordova.apache.org Message-Id: <0d4092d77263489a9c77d567a3f5e52c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: Expose PluginInfo from cordova-lib Date: Mon, 27 Oct 2014 14:51:41 +0000 (UTC) Repository: cordova-lib Updated Branches: refs/heads/master a2165e2f2 -> ad35ab6be Expose PluginInfo from cordova-lib Usage example to get a list of installed plugins: var plugins = cordova_lib.PluginInfo.loadPluginsDir('plugins'); var pluginIds = underscore.pluck(plugins, 'id'); Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/ad35ab6b Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/ad35ab6b Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/ad35ab6b Branch: refs/heads/master Commit: ad35ab6be4e26ea45a26ed1e0e898af1dd63123a Parents: a2165e2 Author: Mark Koudritsky Authored: Mon Oct 27 10:37:04 2014 -0400 Committer: Mark Koudritsky Committed: Mon Oct 27 10:37:04 2014 -0400 ---------------------------------------------------------------------- cordova-lib/cordova-lib.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/ad35ab6b/cordova-lib/cordova-lib.js ---------------------------------------------------------------------- diff --git a/cordova-lib/cordova-lib.js b/cordova-lib/cordova-lib.js index 29d42e5..453bffc 100644 --- a/cordova-lib/cordova-lib.js +++ b/cordova-lib/cordova-lib.js @@ -31,6 +31,7 @@ exports = module.exports = { configparser: require('./src/configparser/ConfigParser.js'), cordova_platforms: require('./src/cordova/platforms'), //// MAIN CORDOVA TOOLS API + PluginInfo: require('./src/PluginInfo'), CordovaError: require('./src/CordovaError') } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org