<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -20,7 +20,7 @@ module HTTParty
     base.extend ClassMethods
   end
   
-  module ClassMethods    
+  module ClassMethods
     def default_options
       @@default_options ||= {}
     end
@@ -30,7 +30,7 @@ module HTTParty
     #
     #	class Twitter
     #	  include HTTParty
-    #	  http_proxy http://myProxy, 1080
+    #	  http_proxy 'http://myProxy', 1080
     # ....
     def http_proxy(addr=nil, port = nil)
       default_options[:http_proxyaddr] = addr
@@ -42,15 +42,10 @@ module HTTParty
       default_options[:base_uri] = normalize_base_uri(uri)
     end
 
-    # Warning: This is not thread safe most likely and
-    # only works if you use one set of credentials. I
-    # leave it because it is convenient on some occasions.
     def basic_auth(u, p)
       default_options[:basic_auth] = {:username =&gt; u, :password =&gt; p}
     end
     
-    # Updates the default query string parameters
-    # that should be appended to each request.
     def default_params(h={})
       raise ArgumentError, 'Default params must be a hash' unless h.is_a?(Hash)
       default_options[:default_params] ||= {}
@@ -68,23 +63,18 @@ module HTTParty
       default_options[:format] = f
     end
     
-    
-    # TODO: spec out this
     def get(path, options={})
       perform_request Net::HTTP::Get, path, options
     end
 
-    # TODO: spec out this
     def post(path, options={})
       perform_request Net::HTTP::Post, path, options
     end
 
-    # TODO: spec out this
     def put(path, options={})
       perform_request Net::HTTP::Put, path, options
     end
 
-    # TODO: spec out this
     def delete(path, options={})
       perform_request Net::HTTP::Delete, path, options
     end</diff>
      <filename>lib/httparty.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b6340ed9d853d602fad27d0118cd61233d3ca563</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/99a07b58c2db1223d029cbafb7b58649f71b8b6c</url>
  <id>99a07b58c2db1223d029cbafb7b58649f71b8b6c</id>
  <committed-date>2008-11-11T16:28:04-08:00</committed-date>
  <authored-date>2008-11-11T16:28:04-08:00</authored-date>
  <message>Removed some crappy documentation.</message>
  <tree>f6c3913becc55c46b03b1ceb24829fec6e4ab05a</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
