summaryrefslogtreecommitdiff
path: root/lib/chef/http/simple.rb
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2013-10-08 16:27:53 -0700
committerdanielsdeleo <dan@opscode.com>2013-10-08 16:27:53 -0700
commit4050f8559c9b483ae36205dd3a0fe1bdf37bb920 (patch)
tree8b95bf95a4d6437658c4f4e019e234847cdaff85 /lib/chef/http/simple.rb
parent629a153ae98a5660cbf2370665d4fcbd57695a96 (diff)
downloadchef-4050f8559c9b483ae36205dd3a0fe1bdf37bb920.tar.gz
Add a simple HTTP client without json/authN support
Diffstat (limited to 'lib/chef/http/simple.rb')
-rw-r--r--lib/chef/http/simple.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/chef/http/simple.rb b/lib/chef/http/simple.rb
new file mode 100644
index 0000000000..0ecb28846c
--- /dev/null
+++ b/lib/chef/http/simple.rb
@@ -0,0 +1,16 @@
+require 'chef/http'
+require 'chef/http/authenticator'
+require 'chef/http/decompressor'
+
+
+class Chef
+ class HTTP
+
+ class Simple < HTTP
+
+ use Decompressor
+ use CookieManager
+
+ end
+ end
+end