<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/httparty.rb</filename>
    </added>
    <added>
      <filename>lib/httparty/core_ext.rb</filename>
    </added>
    <added>
      <filename>lib/httparty/core_ext/hash.rb</filename>
    </added>
    <added>
      <filename>lib/httparty/version.rb</filename>
    </added>
    <added>
      <filename>spec/httparty_spec.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,5 @@
 
-For more information on web, see http://web.rubyforge.org
+For more information on httparty, see http://httparty.rubyforge.org
 
 NOTE: Change this information in PostInstall.txt 
 You can also delete it if you don't want it.</diff>
      <filename>PostInstall.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-= web
+= httparty
 
 * FIX (url)
 </diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,10 @@
-require 'web/version'
+require 'httparty/version'
 
-AUTHOR = 'FIXME full name'  # can also be an array of Authors
-EMAIL = &quot;FIXME email&quot;
-DESCRIPTION = &quot;description of gem&quot;
-GEM_NAME = 'web' # what ppl will type to install your gem
-RUBYFORGE_PROJECT = 'web' # The unix name for your project
+AUTHOR = 'John Nunemaker'  # can also be an array of Authors
+EMAIL = &quot;nunemaker@gmail.com&quot;
+DESCRIPTION = &quot;Makes http fun again!&quot;
+GEM_NAME = 'httparty' # what ppl will type to install your gem
+RUBYFORGE_PROJECT = 'httparty' # The unix name for your project
 HOMEPATH = &quot;http://#{RUBYFORGE_PROJECT}.rubyforge.org&quot;
 DOWNLOAD_PATH = &quot;http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}&quot;
 EXTRA_DEPENDENCIES = [
@@ -34,8 +34,8 @@ end
 REV = nil
 # UNCOMMENT IF REQUIRED:
 # REV = YAML.load(`svn info`)['Revision']
-VERS = Web::VERSION::STRING + (REV ? &quot;.#{REV}&quot; : &quot;&quot;)
-RDOC_OPTS = ['--quiet', '--title', 'web documentation',
+VERS = HTTParty::VERSION::STRING + (REV ? &quot;.#{REV}&quot; : &quot;&quot;)
+RDOC_OPTS = ['--quiet', '--title', 'httparty documentation',
     &quot;--opname&quot;, &quot;index.html&quot;,
     &quot;--line-numbers&quot;,
     &quot;--main&quot;, &quot;README&quot;,</diff>
      <filename>config/hoe.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,10 @@
 dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
-require File.join(dir, 'web')
+require File.join(dir, 'httparty')
 require 'pp'
 config = YAML::load(File.read(File.join(ENV['HOME'], '.delicious')))
 
 class Delicious
-  include Web
+  include HTTParty
   
   base_uri 'https://api.del.icio.us/v1'
   format :xml</diff>
      <filename>examples/delicious.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,10 @@
 dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
-require File.join(dir, 'web')
+require File.join(dir, 'httparty')
 require 'pp'
 config = YAML::load(File.read(File.join(ENV['HOME'], '.twitter')))
 
 class Twitter
-  include Web
+  include HTTParty
   base_uri 'twitter.com'
   
   def initialize(user, pass)</diff>
      <filename>examples/twitter.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,6 +5,6 @@ irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
 libs =  &quot; -r irb/completion&quot;
 # Perhaps use a console_lib to store any extra methods I may want available in the cosole
 # libs &lt;&lt; &quot; -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}&quot;
-libs &lt;&lt;  &quot; -r #{File.dirname(__FILE__) + '/../lib/web.rb'}&quot;
-puts &quot;Loading web gem&quot;
+libs &lt;&lt;  &quot; -r #{File.dirname(__FILE__) + '/../lib/httparty.rb'}&quot;
+puts &quot;Loading httparty gem&quot;
 exec &quot;#{irb} #{libs} --simple-prompt&quot;
\ No newline at end of file</diff>
      <filename>script/console</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 #!/usr/bin/env ruby
 
-GEM_NAME = 'web' # what ppl will type to install your gem
-RUBYFORGE_PROJECT = 'web'
+GEM_NAME = 'httparty' # what ppl will type to install your gem
+RUBYFORGE_PROJECT = 'httparty'
 
 require 'rubygems'
 begin
@@ -17,7 +17,7 @@ require 'syntax/convertors/html'
 require 'erb'
 require File.dirname(__FILE__) + &quot;/../lib/#{GEM_NAME}/version.rb&quot;
 
-version  = Web::VERSION::STRING
+version  = HTTParty::VERSION::STRING
 download = &quot;http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}&quot;
 
 def rubyforge_project_id</diff>
      <filename>script/txt2html</filename>
    </modified>
    <modified>
      <diff>@@ -6,4 +6,4 @@ rescue LoadError
   require 'spec'
 end
 
-require File.join(File.dirname(__FILE__), '..', 'lib', 'web')
\ No newline at end of file
+require File.join(File.dirname(__FILE__), '..', 'lib', 'httparty')
\ No newline at end of file</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lib/web.rb</filename>
    </removed>
    <removed>
      <filename>lib/web/core_ext.rb</filename>
    </removed>
    <removed>
      <filename>lib/web/core_ext/hash.rb</filename>
    </removed>
    <removed>
      <filename>lib/web/version.rb</filename>
    </removed>
    <removed>
      <filename>spec/web_spec.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>99cd89d33d6f82a9f757a16753c2d08270bb4e8c</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/1d48da0313971b62de56c5da5be99d0ed39a660e</url>
  <id>1d48da0313971b62de56c5da5be99d0ed39a660e</id>
  <committed-date>2008-07-28T07:49:53-07:00</committed-date>
  <authored-date>2008-07-28T07:49:53-07:00</authored-date>
  <message>Renamed to HTTParty which is way more fun and unique than boring old web.</message>
  <tree>c36b41276e5eedffa50c30902ae301bb60ce2b23</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
