<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,5 @@
 Copyright (c) 2008 Absolute-Performance, Inc
+Copyright (c) 2008 Peter Williams
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>MIT-LICENSE</filename>
    </modified>
    <modified>
      <diff>@@ -1,17 +1,17 @@
-Resourceful
-============
+= Resourceful
 
 Resourceful provides a convenient Ruby API for making HTTP requests.
+Our intent is to produce a library 
 
 Features:
 
-  * GET, PUT and POST HTTP requests
-  * support for  HTTP Basic and Digest authentication
-  * pluggable unmarshallers for parsing response bodies
+  * GET, PUT, POST and DELETE HTTP requests
+  * Basic authentication
+  * response caching
+  * gzip content encoding
 
+== Example
 
-Example
-=======
 
 Get html page
 
@@ -23,16 +23,35 @@ Get html page
 Get page requiring HTTP Authentication
 
     require 'resourceful'
-    class AuthInfoProvider
-      def authenication_info(realm)
-        ['my_account', 'my-super-secert-password']
-      end
-    end
-
-    http = Resourceful::HttpAccessor.new(:authentication_info_provider =&gt; AuthInfoProvider.new)
-    resp = http.resource('http://internal-app/').get(:accept =&gt; 'text/html')
+    http = Resourceful::HttpAccessor.new
+    http.auth_manager.add_auth_handler(Resourceful::BasicAuthenticator.new('Your Realm', 'login_name', 'password'))
+    resp = http.resource('http://rubyforge.org').get(:accept =&gt; 'text/html')
     puts resp.body
 
 
-Copyright (c) 2008 Absolute Performance, Inc, released under the MIT License.
+Post a URL encoded form
+
+     require 'resourceful'
+     http = Resourceful::HttpAccessor.new
+     resp = http.resource('http://mysite.example/service').
+              post('application/x-www-form-urlencoded', 'hostname=test&amp;level=super')
+
+Put an XML document
+
+     require 'resourceful'
+     http = Resourceful::HttpAccessor.new
+     resp = http.resource('http://mysite.example/service').
+              put('application/xml', '&lt;?xml version=&quot;1.0&quot;?&gt;&lt;test&gt;&lt;/test&gt;')
+    
+Delete a resource
+
+     require 'resourceful'
+     http = Resourceful::HttpAccessor.new
+     resp = http.resource('http://mysite.example/service').delete
+
+    
+
+== Copyright
 
+This library is made available under the MIT License.  Details can be
+found in the file 'MIT-LICENSE' in the root of the project.</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6010d06cd33f63fbc48d7946824aec0d83848de0</id>
    </parent>
  </parents>
  <author>
    <name>Peter Williams</name>
    <email>pwilliams@absolute-performance.com</email>
  </author>
  <url>http://github.com/paul/resourceful/commit/5382ce8065e153df76f7bd543741f01451e863bf</url>
  <id>5382ce8065e153df76f7bd543741f01451e863bf</id>
  <committed-date>2008-06-24T08:18:11-07:00</committed-date>
  <authored-date>2008-06-24T08:18:11-07:00</authored-date>
  <message>Updated README and license file.</message>
  <tree>1453510221e7318fb0a67215bc99fb11f3206f57</tree>
  <committer>
    <name>Peter Williams</name>
    <email>pwilliams@absolute-performance.com</email>
  </committer>
</commit>
