<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>examples/user.rb</filename>
    </added>
    <added>
      <filename>test/fixtures/user.json</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,7 @@
+0.6.3 - April 14, 2009
+* 1 minor addition
+  * Added Twitter.user method to get user's information without authenticating
+  
 0.6.2 - April 14, 2009
 * 1 minor addition
   * added max to search so you can set the max id that should be used</diff>
      <filename>History</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,11 @@ module Twitter
     response = HTTParty.get('http://twitter.com/statuses/public_timeline.json', :format =&gt; :json)
     response.map { |tweet| Mash.new(tweet) }
   end
+  
+  def self.user(id)
+    response = HTTParty.get(&quot;http://twitter.com/users/show/#{id}.json&quot;, :format =&gt; :json)
+    Mash.new(response)
+  end
 end
 
 directory = File.dirname(__FILE__)</diff>
      <filename>lib/twitter.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,4 +9,11 @@ class TwitterTest &lt; Test::Unit::TestCase
     first.text.should == '#torrents Ultimativer Flirt Guide - In 10 Minuten jede Frau erobern: Ultimativer Flirt Guide - In 10 Mi.. http://tinyurl.com/d3okh4'
     first.user.name.should == 'P2P Torrents'
   end
+  
+  should &quot;have user method for unauthenticated calls to get a user's information&quot; do
+    stub_get('http://twitter.com:80/users/show/jnunemaker.json', 'user.json')
+    user = Twitter.user('jnunemaker')
+    user.name.should == 'John Nunemaker'
+    user.description.should == 'Loves his wife, ruby, notre dame football and iu basketball'
+  end
 end</diff>
      <filename>test/twitter_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>50727e090f9abffe9d5047917b140f4748b84598</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/twitter/commit/cb46975eaa8aa7e02ad798ba8b7b62017f15604c</url>
  <id>cb46975eaa8aa7e02ad798ba8b7b62017f15604c</id>
  <committed-date>2009-04-14T14:07:47-07:00</committed-date>
  <authored-date>2009-04-14T14:07:47-07:00</authored-date>
  <message>Added Twitter.user method to get user's information without authenticating</message>
  <tree>3055a2ef5018595a6f4f06d52cf5eafcb2d834b7</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
