<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,32 +1,31 @@
 &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; 
 &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt; 
 &lt;head&gt; 
-	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt; 
-	&lt;title&gt;HTTParty by John Nunemaker&lt;/title&gt; 
-	&lt;link rel=&quot;stylesheet&quot; href=&quot;css/common.css&quot; type=&quot;text/css&quot; /&gt; 
+  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt; 
+  &lt;title&gt;HTTParty by John Nunemaker&lt;/title&gt; 
+  &lt;link rel=&quot;stylesheet&quot; href=&quot;css/common.css&quot; type=&quot;text/css&quot; /&gt; 
 &lt;/head&gt; 
 &lt;body&gt; 
  
 &lt;div id=&quot;wrapper&quot;&gt; 
-	&lt;div id=&quot;header&quot;&gt; 
-		&lt;h1&gt;HTTParty&lt;/h1&gt; 
-		&lt;p&gt;Tonight we're gonna HTTParty like it's 1999!&lt;/p&gt; 
-		
-		&lt;ul id=&quot;nav&quot;&gt;
-			&lt;li&gt;&lt;a href=&quot;rdoc/&quot;&gt;Docs&lt;/a&gt;&lt;/li&gt; 
-			&lt;li&gt;&lt;a href=&quot;http://github.com/jnunemaker/httparty&quot;&gt;Github&lt;/a&gt;&lt;/li&gt;
-			&lt;li&gt;&lt;a href=&quot;http://jnunemaker.lighthouseapp.com/projects/14842-httparty/tickets&quot;&gt;Lighthouse&lt;/a&gt;&lt;/li&gt;
-			&lt;li&gt;&lt;a href=&quot;http://rubyforge.org/projects/httparty/&quot;&gt;Rubyforge&lt;/a&gt;&lt;/li&gt; 
-		&lt;/ul&gt; 
-	&lt;/div&gt; 
-	
-	&lt;div id=&quot;content&quot;&gt; 
-		&lt;h2&gt;Install&lt;/h2&gt; 
-		&lt;pre&gt;&lt;code&gt;$ sudo gem install httparty&lt;/code&gt;&lt;/pre&gt; 
-		
-		&lt;h2&gt;Some Quick Examples&lt;/h2&gt;
-		
-		&lt;p&gt;The following is a simple example of wrapping Twitter's API for posting updates.&lt;/p&gt;
+  &lt;div id=&quot;header&quot;&gt; 
+    &lt;h1&gt;HTTParty&lt;/h1&gt; 
+    &lt;p&gt;Tonight we're gonna HTTParty like it's 1999!&lt;/p&gt; 
+    
+    &lt;ul id=&quot;nav&quot;&gt;
+      &lt;li&gt;&lt;a href=&quot;rdoc/&quot;&gt;Docs&lt;/a&gt;&lt;/li&gt; 
+      &lt;li&gt;&lt;a href=&quot;http://github.com/jnunemaker/httparty&quot;&gt;Github&lt;/a&gt;&lt;/li&gt;
+      &lt;li&gt;&lt;a href=&quot;http://rubyforge.org/projects/httparty/&quot;&gt;Rubyforge&lt;/a&gt;&lt;/li&gt; 
+    &lt;/ul&gt; 
+  &lt;/div&gt; 
+  
+  &lt;div id=&quot;content&quot;&gt; 
+    &lt;h2&gt;Install&lt;/h2&gt; 
+    &lt;pre&gt;&lt;code&gt;$ sudo gem install httparty&lt;/code&gt;&lt;/pre&gt; 
+    
+    &lt;h2&gt;Some Quick Examples&lt;/h2&gt;
+    
+    &lt;p&gt;The following is a simple example of wrapping Twitter's API for posting updates.&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;class Twitter
   include HTTParty
@@ -36,9 +35,9 @@ end
 
 Twitter.post('/statuses/update.json', :query =&gt; {:status =&gt; &quot;It's an HTTParty and everyone is invited!&quot;})&lt;/code&gt;&lt;/pre&gt;
 
-		&lt;p&gt;That is really it! The object returned is a ruby hash that is decoded from Twitter's json response. JSON parsing is used because of the .json extension in the path of the request. You can also explicitly set a format (see the examples). &lt;/p&gt;
+    &lt;p&gt;That is really it! The object returned is a ruby hash that is decoded from Twitter's json response. JSON parsing is used because of the .json extension in the path of the request. You can also explicitly set a format (see the examples). &lt;/p&gt;
 
-		&lt;p&gt;That works and all but what if you don't want to embed your username and password in the class? Below is an example to fix that:&lt;/p&gt;
+    &lt;p&gt;That works and all but what if you don't want to embed your username and password in the class? Below is an example to fix that:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;class Twitter
   include HTTParty
@@ -55,19 +54,19 @@ Twitter.post('/statuses/update.json', :query =&gt; {:status =&gt; &quot;It's an HTTParty an
 end
 
 Twitter.new('username', 'password').post(&quot;It's an HTTParty and everyone is invited!&quot;)&lt;/code&gt;&lt;/pre&gt;
-		
-		&lt;p&gt;&lt;strong&gt;More Examples:&lt;/strong&gt; There are &lt;a href=&quot;http://github.com/jnunemaker/httparty/tree/master/examples/&quot;&gt;several examples in the gem itself&lt;/a&gt;.&lt;/p&gt;
-		
-		&lt;h2&gt;Support&lt;/h2&gt; 
-		&lt;p&gt;Conversations welcome in the &lt;a href=&quot;http://groups.google.com/group/httparty-gem&quot;&gt;google group&lt;/a&gt; and bugs/features over at &lt;a href=&quot;http://jnunemaker.lighthouseapp.com/projects/14842-httparty/overview&quot;&gt;Lightouse&lt;/a&gt;.&lt;/p&gt; 
-		
-		
-	&lt;/div&gt; 
+    
+    &lt;p&gt;&lt;strong&gt;More Examples:&lt;/strong&gt; There are &lt;a href=&quot;http://github.com/jnunemaker/httparty/tree/master/examples/&quot;&gt;several examples in the gem itself&lt;/a&gt;.&lt;/p&gt;
+    
+    &lt;h2&gt;Support&lt;/h2&gt; 
+    &lt;p&gt;Conversations welcome in the &lt;a href=&quot;http://groups.google.com/group/httparty-gem&quot;&gt;google group&lt;/a&gt; and bugs/features over at &lt;a href=&quot;http://github.com/jnunemaker/httparty&quot;&gt;Github&lt;/a&gt;.&lt;/p&gt; 
+    
+    
+  &lt;/div&gt; 
  
-	&lt;div id=&quot;footer&quot;&gt; 
-		&lt;p&gt;Created by &lt;a href=&quot;http://addictedtonew.com/about/&quot;&gt;John Nunemaker&lt;/a&gt; | 
-		  &lt;a href=&quot;http://orderedlist.com/&quot;&gt;Hire Me at Ordered List&lt;/a&gt;&lt;/p&gt; 
-	&lt;/div&gt; 
+  &lt;div id=&quot;footer&quot;&gt; 
+    &lt;p&gt;Created by &lt;a href=&quot;http://addictedtonew.com/about/&quot;&gt;John Nunemaker&lt;/a&gt; | 
+      &lt;a href=&quot;http://orderedlist.com/&quot;&gt;Hire Me at Ordered List&lt;/a&gt;&lt;/p&gt; 
+  &lt;/div&gt; 
 &lt;/div&gt; 
  
 &lt;/body&gt; </diff>
      <filename>website/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ad7978f0a8f28d3da84d5ecaa474ddbfd0375a85</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/e7a1575c9dccad0a49e4bbd962d47e389435819b</url>
  <id>e7a1575c9dccad0a49e4bbd962d47e389435819b</id>
  <committed-date>2009-08-22T07:25:14-07:00</committed-date>
  <authored-date>2009-08-22T07:25:14-07:00</authored-date>
  <message>Updated website to point to github issues instead of lighthouse.</message>
  <tree>0bdd81a4445b7321d1626540284f2b6c7db70b93</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
