public
Description: Imdb library to get movie meta from IMDB.com, since they're too cool to give us an API
Clone URL: git://github.com/maddox/imdb.git
imdb /
name age message
file README Wed Feb 13 23:18:58 -0800 2008 reorganzied and changed up the api [maddox]
file imdb.rb Wed Apr 23 18:46:59 -0700 2008 moved date require [maddox]
directory imdb/ Sun Aug 03 11:15:41 -0700 2008 fixed plot [maddox]
file movie_spec.rb Sun Aug 03 11:15:41 -0700 2008 fixed plot [maddox]
README
A simple ruby library to scrape IMDB

USAGE:

require 'Imdb'

movie = Imdb.find_movie_by_id('tt0382932')

puts "IMDB ID: #{movie.imdb_id}"
puts "Title: #{movie.title}"
puts "Plot: #{movie.plot}"
puts "Runtime: #{movie.runtime}"
puts "Rating: #{movie.rating}"
puts "Poster URL: #{movie.poster_url}"

Thats about all it does. its simple. I only made it to work with another project.
Thanks to 'We <} Code' for the jump start via http://www.weheartcode.com/2007/04/03/scraping-imdb-with-ruby-and-hpricot/