ruby-tmdb 0.0.19
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +58 -0
- data/Rakefile +43 -0
- data/VERSION +1 -0
- data/lib/ruby-tmdb/tmdb.rb +50 -0
- data/lib/ruby-tmdb/tmdb_cast.rb +76 -0
- data/lib/ruby-tmdb/tmdb_movie.rb +84 -0
- data/lib/ruby-tmdb.rb +6 -0
- data/ruby-tmdb.gemspec +72 -0
- data/test/fixtures/example_com.txt +25 -0
- data/test/fixtures/image.jpg +0 -0
- data/test/fixtures/incorrect_api_url.txt +13 -0
- data/test/fixtures/movie_get_info.txt +1125 -0
- data/test/fixtures/movie_imdb_lookup.txt +886 -0
- data/test/fixtures/movie_search.txt +414 -0
- data/test/fixtures/person_get_info.txt +285 -0
- data/test/fixtures/person_search.txt +232 -0
- data/test/setup/.gitignore +1 -0
- data/test/setup/test_unit_extensions.rb +21 -0
- data/test/setup/url_mocks.rb +37 -0
- data/test/test_helper.rb +23 -0
- data/test/unit/tmdb_cast_test.rb +107 -0
- data/test/unit/tmdb_movie_test.rb +151 -0
- data/test/unit/tmdb_test.rb +105 -0
- metadata +111 -0
metadata
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-tmdb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 57
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 19
|
10
|
+
version: 0.0.19
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Aaron Gough
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-05-26 00:00:00 -04:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: webmock
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
33
|
+
type: :development
|
34
|
+
version_requirements: *id001
|
35
|
+
description: An ActiveRecord-style API wrapper for TheMovieDB.org
|
36
|
+
email: aaron@aarongough.com
|
37
|
+
executables: []
|
38
|
+
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files:
|
42
|
+
- MIT-LICENSE
|
43
|
+
- README.rdoc
|
44
|
+
files:
|
45
|
+
- MIT-LICENSE
|
46
|
+
- README.rdoc
|
47
|
+
- Rakefile
|
48
|
+
- VERSION
|
49
|
+
- lib/ruby-tmdb.rb
|
50
|
+
- lib/ruby-tmdb/tmdb.rb
|
51
|
+
- lib/ruby-tmdb/tmdb_cast.rb
|
52
|
+
- lib/ruby-tmdb/tmdb_movie.rb
|
53
|
+
- ruby-tmdb.gemspec
|
54
|
+
- test/fixtures/example_com.txt
|
55
|
+
- test/fixtures/image.jpg
|
56
|
+
- test/fixtures/incorrect_api_url.txt
|
57
|
+
- test/fixtures/movie_get_info.txt
|
58
|
+
- test/fixtures/movie_imdb_lookup.txt
|
59
|
+
- test/fixtures/movie_search.txt
|
60
|
+
- test/fixtures/person_get_info.txt
|
61
|
+
- test/fixtures/person_search.txt
|
62
|
+
- test/setup/.gitignore
|
63
|
+
- test/setup/test_unit_extensions.rb
|
64
|
+
- test/setup/url_mocks.rb
|
65
|
+
- test/test_helper.rb
|
66
|
+
- test/unit/tmdb_cast_test.rb
|
67
|
+
- test/unit/tmdb_movie_test.rb
|
68
|
+
- test/unit/tmdb_test.rb
|
69
|
+
has_rdoc: true
|
70
|
+
homepage: https://github.com/aarongough/ruby-tmdb
|
71
|
+
licenses: []
|
72
|
+
|
73
|
+
post_install_message:
|
74
|
+
rdoc_options:
|
75
|
+
- --charset=UTF-8
|
76
|
+
- --line-numbers
|
77
|
+
- --inline-source
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
hash: 3
|
86
|
+
segments:
|
87
|
+
- 0
|
88
|
+
version: "0"
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
none: false
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
hash: 3
|
95
|
+
segments:
|
96
|
+
- 0
|
97
|
+
version: "0"
|
98
|
+
requirements: []
|
99
|
+
|
100
|
+
rubyforge_project:
|
101
|
+
rubygems_version: 1.3.7
|
102
|
+
signing_key:
|
103
|
+
specification_version: 3
|
104
|
+
summary: An ActiveRecord-style API wrapper for TheMovieDB.org
|
105
|
+
test_files:
|
106
|
+
- test/setup/test_unit_extensions.rb
|
107
|
+
- test/setup/url_mocks.rb
|
108
|
+
- test/test_helper.rb
|
109
|
+
- test/unit/tmdb_cast_test.rb
|
110
|
+
- test/unit/tmdb_movie_test.rb
|
111
|
+
- test/unit/tmdb_test.rb
|