diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-05-28 11:11:23 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-28 11:11:23 -0700 |
commit | 008f083d470cf747ae4b56dea77bf75ad8599263 (patch) | |
tree | 53f61e246c33a86cf14d6e284eb3a29ab8d8a8d2 /tasks | |
parent | b49c1d7f1eeed3ceb7bc35406dd802f582a3c25c (diff) | |
download | chef-008f083d470cf747ae4b56dea77bf75ad8599263.tar.gz |
Improve auto-generated docs
Add more descriptions and examples
Remove some smart quotes
Make sure homebrew_package gets tagged as supporting multi-package
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'tasks')
-rwxr-xr-x | tasks/docs.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/docs.rb b/tasks/docs.rb index ef77cd03a9..c53b4aa58e 100755 --- a/tasks/docs.rb +++ b/tasks/docs.rb @@ -184,7 +184,7 @@ namespace :docs_site do properties = {} # these package properties support passing arrays for the package name - properties["common_resource_functionality_multiple_packages"] = true if %w{yum_package apt_package zypper_package homebrew_package dnf_package pacman_package}.include?(name) + properties["common_resource_functionality_multiple_packages"] = true if %w{yum_package apt_package zypper_package homebrew_package dnf_package pacman_package homebrew_package}.include?(name) properties["common_resource_functionality_resources_common_windows_security"] = true if name == "remote_directory" |