(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.
This commit is contained in:
parent
637deb6979
commit
78cc103d91
|
@ -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": [ ]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue