diff options
author | Tim Smith <tsmith@chef.io> | 2018-09-06 15:14:24 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-09-06 15:38:31 -0700 |
commit | 990cca06ffee547aeda6a543e3cbf256f0b32bce (patch) | |
tree | 6d303ed79e59e8847d9cd241a4b2a011abafdb32 /lib/chef/resource/http_request.rb | |
parent | 1f2bd56d781868cd259b71ce56e6b9bc992f0bea (diff) | |
download | chef-990cca06ffee547aeda6a543e3cbf256f0b32bce.tar.gz |
Add additional resource descriptions
Filling in more of the missing resource descriptions using the descriptions straight from the docs site.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/http_request.rb')
-rw-r--r-- | lib/chef/resource/http_request.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/chef/resource/http_request.rb b/lib/chef/resource/http_request.rb index 6e92fb821c..455d032819 100644 --- a/lib/chef/resource/http_request.rb +++ b/lib/chef/resource/http_request.rb @@ -25,9 +25,7 @@ class Chef resource_name :http_request provides :http_request - description "Use the http_request resource to send an HTTP request (GET, PUT,"\ - " POST, DELETE, HEAD, or OPTIONS) with an arbitrary message. This"\ - " resource is often useful when custom callbacks are necessary." + description "Use the http_request resource to send an HTTP request (GET, PUT, POST, DELETE, HEAD, or OPTIONS) with an arbitrary message. This resource is often useful when custom callbacks are necessary." default_action :get allowed_actions :get, :patch, :put, :post, :delete, :head, :options |