diff options
author | jkeiser <jkeiser@opscode.com> | 2013-01-03 17:51:07 -0800 |
---|---|---|
committer | John Keiser <jkeiser@opscode.com> | 2013-06-07 13:12:15 -0700 |
commit | 233f984d7a68a87ba3c9d9871929bb32d18f5256 (patch) | |
tree | d2bd991903237b044ebd0fdd4d7b9b505c017f42 /lib/chef/knife/raw.rb | |
parent | ced1223a8fb561139add8e0221c32b837d801200 (diff) | |
download | chef-233f984d7a68a87ba3c9d9871929bb32d18f5256.tar.gz |
Fix deps errors, --no-recurse, add deps tests
Diffstat (limited to 'lib/chef/knife/raw.rb')
-rw-r--r-- | lib/chef/knife/raw.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/knife/raw.rb b/lib/chef/knife/raw.rb index 024712878f..940ccf4520 100644 --- a/lib/chef/knife/raw.rb +++ b/lib/chef/knife/raw.rb @@ -9,13 +9,13 @@ class Chef :long => '--method METHOD', :short => '-m METHOD', :default => "GET", - :description => "Request method (GET, POST, PUT or DELETE)" + :description => "Request method (GET, POST, PUT or DELETE). Default: GET" option :pretty, :long => '--[no-]pretty', :boolean => true, :default => true, - :description => "Pretty-print JSON output" + :description => "Pretty-print JSON output. Default: true" option :input, :long => '--input FILE', |