imdb 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Gemfile +3 -0
- data/History.txt +31 -0
- data/Rakefile +7 -36
- data/bin/imdb +0 -0
- data/imdb.gemspec +19 -91
- data/lib/imdb.rb +1 -4
- data/lib/imdb/cli.rb +1 -1
- data/lib/imdb/movie.rb +15 -6
- data/lib/imdb/search.rb +2 -2
- data/lib/imdb/top_250.rb +1 -1
- data/lib/imdb/version.rb +3 -0
- data/spec/fixtures/search_kannethirey_thondrinal +7 -7
- data/spec/fixtures/search_killed_wife +14 -0
- data/spec/fixtures/search_star_trek +488 -320
- data/spec/fixtures/top_250 +470 -206
- data/spec/fixtures/tt0036855 +628 -633
- data/spec/fixtures/tt0083987 +622 -678
- data/spec/fixtures/tt0095016 +642 -719
- data/spec/fixtures/tt0110912 +658 -669
- data/spec/fixtures/tt0111161 +636 -706
- data/spec/fixtures/tt0117731 +644 -688
- data/spec/fixtures/tt0166222 +1806 -0
- data/spec/fixtures/tt0242653 +619 -705
- data/spec/fixtures/tt0330508 +1318 -623
- data/spec/fixtures/tt0468569 +1305 -0
- data/spec/fixtures/tt1401252 +1109 -0
- data/spec/imdb/cli_spec.rb +1 -1
- data/spec/imdb/movie_spec.rb +35 -13
- data/spec/imdb/search_spec.rb +2 -2
- data/spec/spec_helper.rb +15 -14
- metadata +62 -31
- data/VERSION +0 -1
- data/spec/fixtures/search_matrix_revolutions +0 -14
- data/spec/fixtures/tt1352369 +0 -1193
- data/spec/imdb/imdb_spec.rb +0 -10
data/spec/imdb/imdb_spec.rb
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
require File.dirname(__FILE__) + '/../spec_helper.rb'
|
2
|
-
|
3
|
-
describe "Imdb" do
|
4
|
-
|
5
|
-
it "should report the right version" do
|
6
|
-
current_version = File.open(File.join(File.dirname(__FILE__), '..', '..', 'VERSION'), 'r') { |f| f.read.strip }
|
7
|
-
Imdb::VERSION.should eql(current_version)
|
8
|
-
end
|
9
|
-
|
10
|
-
end
|