<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,12 +1,37 @@
-Do not use this yet unless you are dying to help out. 
-I'm going to gem this up and such when I finish the full api.
+= Installation
 
-Also, I'm going to separate Google::Connection into it's own 
-gem and add that as a dependency for the reader gem. This will 
-allow easy reuse of the google authentication.
+sudo gem install googlereader
 
-I'm using the following links below as documentation 
-(and also a bit of reverse engineering with Firebug):
+= Usage
+
+  require 'google/reader'
+  Google::Reader::Base.establish_connection('username', 'password')
+
+  # =&gt; all feeds and labels unread counts
+  pp Google::Reader::Count.all
+
+  # =&gt; all unread counts for labels
+  pp Google::Reader::Count.labels
+
+  # =&gt; all unread counts for feeds
+  pp Google::Reader::Count.feeds
+
+  # =&gt; all items for a label
+  pp Google::Reader::Label.all
+  
+  puts 'Links'
+  # 5 latest unread items
+  unread = Google::Reader::Label.new('links').entries(:unread, :n =&gt; 5) 
+  unread.each { |p| puts p.title }
+  
+  puts 'Using Continuation'
+  # next 5 latest items after the unread above
+  more_unread = Google::Reader::Label.new('links').entries(:unread, :n =&gt; 5, :c =&gt; unread.continuation) 
+  more_unread.each { |p| puts p.title }
+	
+= Notes
+
+I'm using the following links below as documentation (and also a bit of reverse engineering with Firebug) until google releases an official and documented api:
 
 * http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI
 * http://blog.gpowered.net/2007/08/google-reader-api-functions.html
\ No newline at end of file</diff>
      <filename>README.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4e181ed6173439191688ac5f675b6d3f765561cd</id>
    </parent>
  </parents>
  <author>
    <name>jnunemaker</name>
    <email>jnunemaker@fe7eae16-9a24-0410-a59d-9e59979e88be</email>
  </author>
  <url>http://github.com/jnunemaker/googlereader/commit/3432e982a29c9d1397522060ed2f0662d394b528</url>
  <id>3432e982a29c9d1397522060ed2f0662d394b528</id>
  <committed-date>2007-11-19T18:27:45-08:00</committed-date>
  <authored-date>2007-11-19T18:27:45-08:00</authored-date>
  <message>updated readme file


git-svn-id: http://svn.addictedtonew.com/public/gems/googlereader@128 fe7eae16-9a24-0410-a59d-9e59979e88be</message>
  <tree>2216fe1a0f8ba201dd4d17c2fc9eeb4ed56b1474</tree>
  <committer>
    <name>jnunemaker</name>
    <email>jnunemaker@fe7eae16-9a24-0410-a59d-9e59979e88be</email>
  </committer>
</commit>
