diff options
author | danielsdeleo <dan@getchef.com> | 2014-06-27 14:58:26 -0700 |
---|---|---|
committer | danielsdeleo <dan@getchef.com> | 2014-06-27 14:58:26 -0700 |
commit | 2ed829e661f9a357fc9a8cdf316c84f077dad7f9 (patch) | |
tree | c539e57d4125b2f9fe2d25d2ecdf6939930f8613 /lib/chef/http | |
parent | 880e29c3f634b52e241ff26180d287ca89f57b5e (diff) | |
download | chef-2ed829e661f9a357fc9a8cdf316c84f077dad7f9.tar.gz |
Add missing requires to HTTP and HTTP::Simplehttp-simple-requires
Diffstat (limited to 'lib/chef/http')
-rw-r--r-- | lib/chef/http/simple.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/http/simple.rb b/lib/chef/http/simple.rb index d675a17ee8..8519554f2b 100644 --- a/lib/chef/http/simple.rb +++ b/lib/chef/http/simple.rb @@ -1,7 +1,8 @@ require 'chef/http' require 'chef/http/authenticator' require 'chef/http/decompressor' - +require 'chef/http/cookie_manager' +require 'chef/http/validate_content_length' class Chef class HTTP |