DiggRuby 2
DiggRuby is a Ruby implementation of the Digg API. It provides an object-oriented interface to all of the available endpoints of the API. It is offered under the MIT License.
The code is hosted in a Google Project.
You can either download v0.1 or get the latest from SVN:svn checkout http://digg-ruby.googlecode.com/svn/trunk/ digg-ruby
require 'digg'
digg = Digg.new # create a digg client
digg.stories.each do |story| # fetch and print titles of stories
puts story.title
endMark Nutter has written about his experience with DiggRuby and how he created Diggraphy.
Also, there is a thread discussing DiggRuby in the official Digg API Google Group.
Enjoy.