<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -71,28 +71,28 @@ module HTTParty
     
     # TODO: spec out this
     def get(path, options={})
-      send_request Net::HTTP::Get, path, options
+      perform_request Net::HTTP::Get, path, options
     end
 
     # TODO: spec out this    
     def post(path, options={})
-      send_request Net::HTTP::Post, path, options
+      perform_request Net::HTTP::Post, path, options
     end
 
     # TODO: spec out this    
     def put(path, options={})
-      send_request Net::HTTP::Put, path, options
+      perform_request Net::HTTP::Put, path, options
     end
 
     # TODO: spec out this    
     def delete(path, options={})
-      send_request Net::HTTP::Delete, path, options
+      perform_request Net::HTTP::Delete, path, options
     end
 
     private
 
-      def send_request(http_method, path, options)
-        Request.send_request(http_method, path, default_options.merge(options))
+      def perform_request(http_method, path, options)
+        Request.perform_request(http_method, path, default_options.merge(options))
       end
     
       # Makes it so uri is sure to parse stuff like google.com with the http</diff>
      <filename>lib/httparty.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,8 +2,8 @@ module HTTParty
   class Request
     SupportedHTTPMethods = [Net::HTTP::Get, Net::HTTP::Post, Net::HTTP::Put, Net::HTTP::Delete]
 
-    def self.send_request(http_method, path, options={})
-      new(http_method, path, options).send_request
+    def self.perform_request(http_method, path, options={})
+      new(http_method, path, options).perform
     end
 
     attr_accessor :http_method, :path, :options
@@ -28,7 +28,7 @@ module HTTParty
     #   headers     =&gt; hash of headers to send request with
     #   basic_auth  =&gt; :username and :password to use as basic http authentication (overrides basic_auth setting)
     # Raises exception Net::XXX (http error code) if an http error occured
-    def send_request #:nodoc:
+    def perform #:nodoc:
       raise HTTParty::RedirectionTooDeep, 'HTTP redirects too deep' if options[:limit].to_i &lt;= 0
       raise ArgumentError, 'only get, post, put and delete methods are supported' unless SupportedHTTPMethods.include?(http_method)
       raise ArgumentError, ':headers must be a hash' if options[:headers] &amp;&amp; !options[:headers].is_a?(Hash)
@@ -36,7 +36,6 @@ module HTTParty
       
       uri = path.relative? ? URI.parse(&quot;#{options[:base_uri]}#{path}&quot;) : path
       
-      
       query_string_parts = []
       query_string_parts &lt;&lt; uri.query unless uri.query.blank?
       
@@ -63,13 +62,12 @@ module HTTParty
       when Net::HTTPRedirection
         options[:limit] -= 1
         self.path = response['location']
-        send_request
+        perform
       else
         response.instance_eval { class &lt;&lt; self; attr_accessor :body_parsed; end }
         begin; response.body_parsed = parse_response(response.body); rescue; end
         response.error! # raises  exception corresponding to http error Net::XXX
       end
-
     end
 
     private</diff>
      <filename>lib/httparty/request.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c67b6d4f01b9e01438da4ce3aa92f32828806eb3</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/67cb57256ff8ee1d3703fbe9fb8b8a1adf39a473</url>
  <id>67cb57256ff8ee1d3703fbe9fb8b8a1adf39a473</id>
  <committed-date>2008-11-11T16:07:11-08:00</committed-date>
  <authored-date>2008-11-11T16:07:11-08:00</authored-date>
  <message>Switched from send to perform which sounds fancier.</message>
  <tree>3fe64f20a815f55bf6801117d0486f338c1e16bd</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
