<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,9 @@
+== 0.1.5 2008-11-14
+* 1 major enhancement
+  * Refactored send request method out into its own object.
+  
 == 0.1.4 2008-11-08
-* 2 major enhancements:
+* 3 major enhancements:
   * Removed some cruft
   * Added ability to follow redirects automatically and turn that off (Alex Vollmer)
 </diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -13,13 +13,14 @@ examples/twitter.rb
 examples/whoismyrep.rb
 httparty.gemspec
 lib/httparty.rb
+lib/httparty/request.rb
 lib/httparty/version.rb
 script/console
 script/destroy
 script/generate
 script/txt2html
 setup.rb
-spec/hash_spec.rb
+spec/httparty/request_spec.rb
 spec/httparty_spec.rb
 spec/spec.opts
 spec/spec_helper.rb</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,28 +1,30 @@
+# -*- encoding: utf-8 -*-
+
 Gem::Specification.new do |s|
   s.name = %q{httparty}
-  s.version = &quot;0.1.4&quot;
+  s.version = &quot;0.1.5&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;John Nunemaker&quot;]
-  s.date = %q{2008-11-08}
+  s.date = %q{2008-11-14}
   s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
   s.email = [&quot;nunemaker@gmail.com&quot;]
   s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;PostInstall.txt&quot;, &quot;README.txt&quot;]
-  s.files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;PostInstall.txt&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;config/hoe.rb&quot;, &quot;config/requirements.rb&quot;, &quot;examples/aaws.rb&quot;, &quot;examples/delicious.rb&quot;, &quot;examples/google.rb&quot;, &quot;examples/twitter.rb&quot;, &quot;examples/whoismyrep.rb&quot;, &quot;httparty.gemspec&quot;, &quot;lib/httparty.rb&quot;, &quot;lib/httparty/version.rb&quot;, &quot;script/console&quot;, &quot;script/destroy&quot;, &quot;script/generate&quot;, &quot;script/txt2html&quot;, &quot;setup.rb&quot;, &quot;spec/hash_spec.rb&quot;, &quot;spec/httparty_spec.rb&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/environment.rake&quot;, &quot;tasks/website.rake&quot;, &quot;website/css/common.css&quot;, &quot;website/index.html&quot;]
+  s.files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;PostInstall.txt&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;config/hoe.rb&quot;, &quot;config/requirements.rb&quot;, &quot;examples/aaws.rb&quot;, &quot;examples/delicious.rb&quot;, &quot;examples/google.rb&quot;, &quot;examples/twitter.rb&quot;, &quot;examples/whoismyrep.rb&quot;, &quot;httparty.gemspec&quot;, &quot;lib/httparty.rb&quot;, &quot;lib/httparty/request.rb&quot;, &quot;lib/httparty/version.rb&quot;, &quot;script/console&quot;, &quot;script/destroy&quot;, &quot;script/generate&quot;, &quot;script/txt2html&quot;, &quot;setup.rb&quot;, &quot;spec/httparty/request_spec.rb&quot;, &quot;spec/httparty_spec.rb&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/environment.rake&quot;, &quot;tasks/website.rake&quot;, &quot;website/css/common.css&quot;, &quot;website/index.html&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://httparty.rubyforge.org}
   s.post_install_message = %q{When you HTTParty, you must party hard!}
   s.rdoc_options = [&quot;--main&quot;, &quot;README.txt&quot;]
   s.require_paths = [&quot;lib&quot;]
   s.rubyforge_project = %q{httparty}
-  s.rubygems_version = %q{1.2.0}
+  s.rubygems_version = %q{1.3.1}
   s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
 
   if s.respond_to? :specification_version then
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
     s.specification_version = 2
 
-    if current_version &gt;= 3 then
+    if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
       s.add_runtime_dependency(%q&lt;activesupport&gt;, [&quot;&gt;= 2.1&quot;])
       s.add_development_dependency(%q&lt;hoe&gt;, [&quot;&gt;= 1.8.0&quot;])
     else</diff>
      <filename>httparty.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module HTTParty
   module VERSION #:nodoc:
     MAJOR = 0
     MINOR = 1
-    TINY  = 4
+    TINY  = 5
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/httparty/version.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>9931e2a20dd579289407e28d1631ef319a5d3ad7</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/343ac9ca2cbd060003fdb0fea053bfd146bfdad8</url>
  <id>343ac9ca2cbd060003fdb0fea053bfd146bfdad8</id>
  <committed-date>2008-11-14T11:08:29-08:00</committed-date>
  <authored-date>2008-11-14T11:06:55-08:00</authored-date>
  <message>Prepped for 0.1.5 release.</message>
  <tree>7faf9900edf2990a701990f2ba3f9d9cda09d225</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
