From 78cc103d919ce6e361607095d2e64ad661e0a654 Mon Sep 17 00:00:00 2001 From: Hailee Kenney Date: Mon, 6 Oct 2014 16:26:40 -0700 Subject: [PATCH] (maint) Use requirements instead of dependencies In the previous commit, the metadata.json file was changed to have puppet as a dependency rather than a requirement. This caused the module to try to install puppet from the Forge which was not the desired behavior for many reasons. Therefor, update the metadata file to use requirements instead of dependencies. --- metadata.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/metadata.json b/metadata.json index ae2c6f3..e45be4b 100644 --- a/metadata.json +++ b/metadata.json @@ -1,19 +1,20 @@ { "name": "puppetlabs-strings", - "version": "0.0.1", + "version": "0.1.0", "author": "Puppet Labs", "summary": "Puppet documentation via YARD", "license": "Apache 2.0", "source": "https://github.com/puppetlabs/puppetlabs-strings", - "project_page": null, - "issues_url": null, + "project_page": "https://tickets.puppetlabs.com/browse/PDOC", + "issues_url": "https://tickets.puppetlabs.com/browse/PDOC", "tags": ["yard", "yardoc", "puppet", "dev", "docs", "documentation"], "operatingsystem_support": [ ], - "dependencies": [ + "requirements": [ { "name": "puppet", "version_requirement": ">= 3.6.0" } - ] + ], + "dependencies": [ ] }