<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -6,6 +6,12 @@ A teeny tiny gem to interface with Flickr photostreams
 
 == Installation
 
+=== Stable
+
+    sudo gem install fleakr
+
+=== Bleeding Edge
+
     sudo gem install reagent-fleakr --source=http://gems.github.com
     
 Or ...
@@ -41,6 +47,12 @@ Once you have a user, you can find his associated sets:
     =&gt; [#&lt;Fleakr::Objects::Set:0x671358 @title=&quot;The Decapitator&quot;, @description=&quot;&quot;&gt;, 
         #&lt;Fleakr::Objects::Set:0x66d898 @title=&quot;londonpaper hijack&quot;, ...
 
+Or contacts:
+
+    &gt;&gt; user.contacts.first
+    =&gt; #&lt;Fleakr::Objects::User:0x19039bc @username=&quot;.schill&quot;,
+        @id=&quot;12289718@N00&quot;, @icon_farm=&quot;1&quot;, @icon_server=&quot;4&quot;&gt;
+
 Or groups if you would like:
     
     &gt;&gt; user.groups
@@ -51,6 +63,11 @@ Or groups if you would like:
     &gt;&gt; user.groups.first.id
     =&gt; &quot;14581414@N00&quot;
 
+Groups also contain photos:
+
+    &gt;&gt; u.groups.last.photos.first.title
+    =&gt; &quot;Welcome To The Machine&quot;
+
 When accessing a set, you can also grab all the photos that are in that set:
 
     &gt;&gt; user.sets.first
@@ -77,21 +94,29 @@ and the size of the images you're interested in:
 
 If you would prefer to just search photos, you can do that with search text:
 
-    &gt;&gt; search = Fleakr::Objects::Search.new('ponies!!')
-    &gt;&gt; search.results
+    &gt;&gt; photos = Fleakr.search('ponies!!')
     =&gt; [#&lt;Fleakr::Objects::Photo:0x11f4e64 @title=&quot;hiroshima atomic garden&quot;, @id=&quot;3078234390&quot;&gt;, 
         #&lt;Fleakr::Objects::Photo:0x11f4928 @title=&quot;PONYLOV&quot;, @id=&quot;3077360853&quot;&gt;, ...
-    &gt;&gt; search.results.first.title
+    &gt;&gt; photos.first.title
     =&gt; &quot;hiroshima atomic garden&quot;
 
 You can also search based on tags:
 
-    &gt;&gt; search = Fleakr::Objects::Search.new(nil, :tags =&gt; 'macro')
-    &gt;&gt; search.results.first.title
+    &gt;&gt; photos = Fleakr.search(:tags =&gt; 'macro')
+    &gt;&gt; photos.first.title
     =&gt; &quot;Demure&quot;
-    &gt;&gt; search.results.first.id
+    &gt;&gt; photos.first.id
     =&gt; &quot;3076049945&quot;
 
+Searches can also be scoped to other entities in the system (namely Users and Groups):
+
+    &gt;&gt; user.groups.first.search('awesome')
+    =&gt; [#&lt;Fleakr::Objects::Photo:0x18cb4cc @server_id=&quot;2012&quot;, @id=&quot;2181921273&quot;,
+         @farm_id=&quot;3&quot;, @title=&quot;&quot;, @secret=&quot;634eda7521&quot;&gt;, ... 
+    &gt;&gt; user.search('serpent')
+    =&gt; [#&lt;Fleakr::Objects::Photo:0x18a6960 @server_id=&quot;41&quot;, @id=&quot;81370156&quot;,
+        @farm_id=&quot;1&quot;, @title=&quot;Clear and Serpent Danger&quot;, @secret=&quot;013091582a&quot;&gt;]
+        
 == TODO
 
 * Implement remaining bits of person, photoset, and photo-releated APIs</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -12,6 +12,14 @@ module Fleakr
     #  user = Fleakr.user('brownout')
     #  user.photos.first.small.save_to('/tmp')
     #
+    # == Attributes
+    # 
+    # [size] The name of this image's size (e.g. Square, Large, etc...)
+    # [width] The width of this image
+    # [height] The height of this image
+    # [url] The direct URL for this image
+    # [page] The page on Flickr that represents this photo
+    # 
     class Image
 
       include Fleakr::Support::Object</diff>
      <filename>lib/fleakr/objects/image.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>db2cd700c84d87f661056be55c5dfe964f56e20c</id>
    </parent>
  </parents>
  <author>
    <name>Patrick Reagan</name>
    <email>patrick.reagan@viget.com</email>
  </author>
  <url>http://github.com/reagent/fleakr/commit/949a07b8223feed6e1322219bdcd6ed6b5fd1c4c</url>
  <id>949a07b8223feed6e1322219bdcd6ed6b5fd1c4c</id>
  <committed-date>2008-12-11T22:12:22-08:00</committed-date>
  <authored-date>2008-12-11T22:12:22-08:00</authored-date>
  <message>Update documentation</message>
  <tree>a2c0bca406ef747ddaa50eec604fbb095c563f50</tree>
  <committer>
    <name>Patrick Reagan</name>
    <email>patrick.reagan@viget.com</email>
  </committer>
</commit>
