<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -18,6 +18,8 @@ Get your Flickr user id at http://idgettr.com/
 
 == SYNOPSIS:
 
+=== Class level configuration
+
   class MyFlickr
     include MiniFlickr::Base
     connect_to_flickr :api_key =&gt; 'your-api-key', :user_id =&gt; 'your-user-id'
@@ -31,6 +33,27 @@ Get your Flickr user id at http://idgettr.com/
 	&lt;/a&gt;
   &lt;% end %&gt;
 
+=== Instance level configuration
+
+There's also a utility class that takes api_key and user_id as parameters.
+This means you can configure Flickr accounts per-instance (for example your site has many users, each with their own Flickr photos).
+
+flickr = MiniFlickr::Simple.new('some-key', 'some-user-id')
+
+flickr.photos # =&gt; collection of MiniFlickr::Photo objects with sizes and url's (see above)
+
+You can also use this as a value object for ActiveRecord, for example.
+
+class Flickr &lt; MiniFlickr::Simple; end
+
+class User &lt; ActiveRecord::Base
+	composed_of :flickr, :mappings =&gt; %w(api_key flickr_user_id)
+end
+
+user = User.create(:name =&gt; 'Ismael', :api_key =&gt; 'some-api-key', :flickr_user_id =&gt; 'some-flickr-userid')
+
+user.flickr.photos # collection of flickr photos
+
 == TESTING:
 
 This gem uses Rspec for testing. Run the existing specs with rake spec.</diff>
      <filename>README.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6924f792ef97826a118ebabddcdcb8e72faf052a</id>
    </parent>
  </parents>
  <author>
    <name>ismasan</name>
    <email>ismaelct@gmail.com</email>
  </author>
  <url>http://github.com/ismasan/mini_flickr/commit/1c13528fa7faf92186ad48a2d5eaec3f7d8db572</url>
  <id>1c13528fa7faf92186ad48a2d5eaec3f7d8db572</id>
  <committed-date>2008-05-15T05:30:11-07:00</committed-date>
  <authored-date>2008-05-15T05:30:11-07:00</authored-date>
  <message>Added info on MiniFlickr::Simple to README</message>
  <tree>a65aa06fef64b8415a6ab4a0b4d3f8872b974164</tree>
  <committer>
    <name>ismasan</name>
    <email>ismaelct@gmail.com</email>
  </committer>
</commit>
