wondercroc

A gem that provides functionality for interfacing with the NewsGator online feed reading service.

simple to use

c = WonderCroc::Client.new :user => 'newsgator_user', :password => 'newsgator_pass', :location => 'newsgator_location'

Or, if you have a YAML file like this:

user: newsgator_user
password: newsgator_password
location: newsgator_location

You can pass it in like this:

c = WonderCroc::Client.new :file => '/path/to/config.yml'

If you don’t specify a location anywhere, it will default to the name of the library, a hyphen, and the name of your machine (in all caps), like thus:

wondercroc-MY_IMAC

folders

Folders are a tree of the folders you have at the location you specified previously.

c.get_folders

subscriptions

c.get_subscriptions_from_location

That’s kind of where I am right now, poke around in irb to get a better feel for what you can do from there.