0.0
No commit activity in last 3 years
No release in over 3 years
Unofficial API for iCheckMovies.com
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

 Project Readme

ICheckMovies

Get easy access to any public ICheckMovies list.

How to use

Find by url

require "icheckmovies"
check = ICheckMovies.fetch("http://www.icheckmovies.com/list/the+best+1000+movies+ever+made/")

check.name # => The Best 1,000 Movies Ever Made
check.movies.count # => 1002
check.movies.first.title # => À nous la liberté

Data to work with

Accessors

  • name (String) List name.
  • url (String) Full URL to the given list.
  • movies (Array< Movie >) A list of movies.

A movie object

The movies method returns a list of movies.

  • id (String) IMDb movie id.
  • imdb_link (String) IMDb link.
  • title (String) Movie title.
  • year (Fixnum) Release year.
  • details (String) Url to ICheckMovies detail page.
  • order (Fixnum) Where is the movie?

How do install

[sudo] gem install icheckmovies

Requirements

ICheckMovies is tested in OS X 10.7.1 using Ruby 1.9.2.

License

ICheckMovies is released under the MIT license.