<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -4,58 +4,16 @@
 
 Makes http fun again!
 
-== FEATURES/PROBLEMS:
+== FEATURES:
 
 * Easy get, post, put, delete requests
 * Basic http authentication
 * Default request query string parameters (ie: for api keys that are needed on each request)
 * Automatic parsing of JSON and XML into ruby hashes based on response content-type
 
-== SYNOPSIS:
+== EXAMPLES:
 
-The following is a simple example of wrapping Twitter's API for posting updates.
-
-	class Twitter
-	  include HTTParty
-	  base_uri 'twitter.com'
-	  basic_auth 'username', 'password'
-	end
-
-	Twitter.post('/statuses/update.json', :query =&gt; {:status =&gt; &quot;It's an HTTParty and everyone is invited!&quot;})
-
-That is really it! The object returned is a ruby hash that is decoded from Twitter's json response. JSON parsing is used because of the .json extension in the path of the request. You can also explicitly set a format (see the examples). 
-
-That works and all but what if you don't want to embed your username and password in the class? Below is an example to fix that:
-
-	class Twitter
-	  include HTTParty
-	  base_uri 'twitter.com'
-
-	  def initialize(u, p)
-	    @auth = {:username =&gt; u, :password =&gt; p}
-	  end
-
-	  def post(text)
-	    options = { :query =&gt; {:status =&gt; text}, :basic_auth =&gt; @auth }
-	    self.class.post('/statuses/update.json', options)
-	  end
-	end
-	
-	Twitter.new('username', 'password').post(&quot;It's an HTTParty and everyone is invited!&quot;)
-
-=== REQUEST OPTIONS
-
-Each of the HTTP method (get, post, put and delete) each take a hash of options.
-The following keys can be specified in the options:
-
-headers::       A &lt;tt&gt;Hash&lt;/tt&gt; of header key/value pairs
-query::         A &lt;tt&gt;Hash&lt;/tt&gt; of query key/value pairs
-body::          The body of the request. If it's a &lt;tt&gt;Hash&lt;/tt&gt;, it is
-                converted into query-string format, otherwise it is sent
-                as-is.
-basic_auth::    A &lt;tt&gt;Hash&lt;/tt&gt; containing keys for &lt;tt&gt;:username&lt;/tt&gt; and
-                &lt;tt&gt;:password&lt;/tt&gt;.
-no_follow::     Turns off automatic redirect following
+See http://github.com/jnunemaker/httparty/tree/master/examples
 
 == REQUIREMENTS:
 </diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c49ba063100e238e2dd174b264d25302e56797bc</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/11894cbf01509a740f87e253e799fbd58569ec0a</url>
  <id>11894cbf01509a740f87e253e799fbd58569ec0a</id>
  <committed-date>2008-12-05T14:14:54-08:00</committed-date>
  <authored-date>2008-12-05T14:14:54-08:00</authored-date>
  <message>Updated readme.</message>
  <tree>889582b3ee57b439c8f92d416a49e3fa5a075d5e</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
