imdb
https://github.com/ariejan/imdb
Imdb::Base#initialize
Initialize a new IMDB movie object with it's IMDB id (as a String)
movie = Imdb::Movie.new("0095016")
Imdb::Movie objects are lazy loading, meaning that no HTTP request
will be performed when a new object is created. Only when you use an
accessor that needs the remote data, a HTTP request is made (once).Edit
git clone [email protected]:ariejan/imdb.git
cd imdb
open lib/imdb/base.rb
Contribute
# Make a new branchgit checkout -b -your-name--update-docs-Imdb--Base-initialize-for-pr
# Commit to gitgit add lib/imdb/base.rbgit commit -m "better docs for Imdb::Base#initialize"
# Open pull requestgem install hub # on a mac you can `brew install hub`
hub fork
git push <your name> -your-name--update-docs-Imdb--Base-initialize-for-pr
hub pull-request
# Celebrate!