Sha256: 4fdef246e21994dfedcb5e99c06ee92b3b85e164e50daca3de265c327c15f603

Contents?: true

Size: 1002 Bytes

Versions: 4

Compression:

Stored size: 1002 Bytes

Contents

== Welcome to Ruby IMDB

ruby-imdb is IMDB parsing library for Ruby.

== Features

 * Dynamic Caching with MongoDB backend
 * Object Oriented design
 * Fast access to data

== Download

 * [sudo] gem i ruby-imdb
 * http://github.com/yalcin/ruby-imdb
 * git clone git://github.com/yalcin/ruby-imdb.git


== Enable caching

require 'rubygems'
require 'imdb'

IMDB::Configuration.caching = true
IMDB::Configuration.db(:hostname => "localhost", :database => "imdb")

== Usage

require 'rubygems'
require 'imdb'

IMDB::Search.movie("fear and loathing in las vegas").each do
  |result|
  movie = IMDB::Movie.new(result.id)
  p movie.title
  movie.cast.each do
    |cast|
    p "#{cast.name} as #{cast.char}"
  end
  p movie.poster
end

movie = IMDB::Movie.new('0120669')
p movie.poster

== Examples

Under the features directory

== Authors
 * Yalcin ACIKYILDIZ (mailto:yalcin@webliyacelebi.com)


This library is released under the terms of the GNU/GPL.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-imdb-0.7.2 README
ruby-imdb-0.7.1 README
ruby-imdb-0.7.0 README
ruby-imdb-0.6.0 README