<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -78,7 +78,7 @@ module HTTParty
     end
     
     private
-      def http(uri)
+      def http(uri) #:nodoc:
         if @http.blank?
           @http = Net::HTTP.new(uri.host, uri.port)
           @http.use_ssl = (uri.port == 443)
@@ -94,7 +94,7 @@ module HTTParty
       #   body        =&gt; hash of keys/values or a query string (foo=bar&amp;baz=poo)
       #   headers     =&gt; hash of headers to send request with
       #   basic_auth  =&gt; :username and :password to use as basic http authentication (overrides @auth class instance variable)
-      def send_request(method, path, options={})
+      def send_request(method, path, options={}) #:nodoc:
         raise ArgumentError, 'only get, post, put and delete methods are supported' unless %w[get post put delete].include?(method.to_s)
         raise ArgumentError, ':headers must be a hash' if options[:headers] &amp;&amp; !options[:headers].is_a?(Hash)
         raise ArgumentError, ':basic_auth must be a hash' if options[:basic_auth] &amp;&amp; !options[:basic_auth].is_a?(Hash)
@@ -119,7 +119,7 @@ module HTTParty
         parse_response(response.body)
       end
       
-      def parse_response(body)
+      def parse_response(body) #:nodoc:
         case @format
         when 'xml'
           Hash.from_xml(body)
@@ -132,7 +132,7 @@ module HTTParty
       end
     
       # Makes it so uri is sure to parse stuff like google.com with the http
-      def normalize_base_uri(str)
+      def normalize_base_uri(str) #:nodoc:
         str =~ /^https?:\/\// ? str : &quot;http#{'s' if str.include?(':443')}://#{str}&quot;
       end
       
@@ -140,7 +140,7 @@ module HTTParty
       # Just does simple pattern matching on file extention:
       #   /foobar.xml =&gt; 'xml'
       #   /foobar.json =&gt; 'json'
-      def format_from_path(path)
+      def format_from_path(path) #:nodoc:
         ext = File.extname(path)[1..-1]
         !ext.blank? &amp;&amp; AllowedFormats.include?(ext) ? ext : nil
       end</diff>
      <filename>lib/httparty.rb</filename>
    </modified>
    <modified>
      <diff>@@ -14,4 +14,4 @@ task :website_upload do
 end
 
 desc 'Generate and upload website files'
-task :website =&gt; [:website_generate, :website_upload, :publish_docs]
+task :website =&gt; [:website_upload, :publish_docs]</diff>
      <filename>tasks/website.rake</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3a9b0b1b390408b16a3a2ff9b8086d774e97f0ba</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/b3094fc1bbb9adc32d73957ec4bf4518c862777f</url>
  <id>b3094fc1bbb9adc32d73957ec4bf4518c862777f</id>
  <committed-date>2008-07-30T21:30:52-07:00</committed-date>
  <authored-date>2008-07-30T21:30:52-07:00</authored-date>
  <message>nodoc'd some stuff</message>
  <tree>5a15224c6f31d462ba6e9d9ab540a0af5a8b3849</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
