Sha256: a9ec781dfb82f8b3ac3814623b62478a622944dee22bea49394968cfba91d447

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

# ICheckMovies

Get easy access to any public [ICheckMovies](http://www.icheckmovies.com/) [list](http://www.icheckmovies.com/list/the+best+1000+movies+ever+made/).

## How to use

### Find by url

``` ruby
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.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
icheckmovies-0.6.1 README.md
icheckmovies-0.6.0 README.md