public
Description: Wrapper for Google Reader's undocumented and possibly "unstable" API. By unstable, I mean if they haven't documented it, then they could change it at anytime without notice.
Homepage: http://googlereader.rubyforge.org/
Clone URL: git://github.com/jnunemaker/googlereader.git
name age message
file History.txt Loading commit data...
file License.txt
file Manifest.txt
file README.txt
file Rakefile
file Todo.txt
directory config/
directory examples/
directory lib/
directory log/ Mon Nov 19 17:50:41 -0800 2007 initial add of google reader gem git-svn-id: ... [jnunemaker]
directory script/ Mon Nov 19 17:50:41 -0800 2007 initial add of google reader gem git-svn-id: ... [jnunemaker]
file setup.rb
directory tasks/ Mon Nov 19 17:50:41 -0800 2007 initial add of google reader gem git-svn-id: ... [jnunemaker]
directory test/
directory website/ Mon Nov 19 17:50:41 -0800 2007 initial add of google reader gem git-svn-id: ... [jnunemaker]
README.txt
= Installation

sudo gem install googlereader

= Usage

  require 'google/reader'
  Google::Reader::Base.establish_connection('username', 'password')

  # => all feeds and labels unread counts
  pp Google::Reader::Count.all

  # => all unread counts for labels
  pp Google::Reader::Count.labels

  # => all unread counts for feeds
  pp Google::Reader::Count.feeds

  # => 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 => 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 => 5, :c => 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