<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>examples/unauthorized.rb</filename>
    </added>
    <added>
      <filename>test/fixtures/status_show.json</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -2,6 +2,9 @@
 * 1 minor enhancement
   * added ability to pass query parameters to user method
   * httpauth can now accept :ssl option to use https instead of http
+  * Added Twitter.status method for no auth calls to fetch status
+  * Added Twitter.friend_ids method for no auth calls to fetch status
+  * Added Twitter.follower_ids method for no auth calls to fetch status
   
 0.6.5 - April 15, 2009
 * 1 bug fix</diff>
      <filename>History</filename>
    </modified>
    <modified>
      <diff>@@ -38,6 +38,19 @@ module Twitter
     response = HTTParty.get(&quot;http://twitter.com/users/show/#{id}.json&quot;, :format =&gt; :json)
     Mash.new(response)
   end
+  
+  def self.status(id)
+    response = HTTParty.get(&quot;http://twitter.com/statuses/show/#{id}.json&quot;, :format =&gt; :json)
+    Mash.new(response)
+  end
+  
+  def self.friend_ids(id)
+    HTTParty.get(&quot;http://twitter.com/friends/ids/#{id}.json&quot;, :format =&gt; :json)
+  end
+  
+  def self.follower_ids(id)
+    HTTParty.get(&quot;http://twitter.com/followers/ids/#{id}.json&quot;, :format =&gt; :json)
+  end
 end
 
 directory = File.dirname(__FILE__)</diff>
      <filename>lib/twitter.rb</filename>
    </modified>
    <modified>
      <diff>@@ -16,4 +16,23 @@ class TwitterTest &lt; Test::Unit::TestCase
     user.name.should == 'John Nunemaker'
     user.description.should == 'Loves his wife, ruby, notre dame football and iu basketball'
   end
+  
+  should &quot;have status method for unauthenticated calls to get a status&quot; do
+    stub_get('http://twitter.com:80/statuses/show/1533815199.json', 'status_show.json')
+    status = Twitter.status(1533815199)
+    status.id.should == 1533815199
+    status.text.should == 'Eating some oatmeal and butterscotch cookies with a cold glass of milk for breakfast. Tasty!'
+  end
+  
+  should &quot;have friend_ids method&quot; do
+    stub_get('http://twitter.com:80/friends/ids/jnunemaker.json', 'friend_ids.json')
+    ids = Twitter.friend_ids('jnunemaker')
+    ids.size.should == 161
+  end
+  
+  should &quot;have follower_ids method&quot; do
+    stub_get('http://twitter.com:80/followers/ids/jnunemaker.json', 'follower_ids.json')
+    ids = Twitter.follower_ids('jnunemaker')
+    ids.size.should == 1252
+  end
 end</diff>
      <filename>test/twitter_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f46cdf9ce957b03539bd4dc76a83ce439535d349</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/twitter/commit/55813617c5b4cf672800bf7f9e7473904e3c3194</url>
  <id>55813617c5b4cf672800bf7f9e7473904e3c3194</id>
  <committed-date>2009-04-16T09:51:07-07:00</committed-date>
  <authored-date>2009-04-16T09:51:07-07:00</authored-date>
  <message>Added several unauthorized methods that twitter provides.</message>
  <tree>3371e683f323cdc3bef02bb00761f08c46065142</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
