tmdb-api 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rspec +1 -1
- data/.ruby-version +1 -0
- data/.travis.yml +1 -0
- data/README.md +82 -188
- data/lib/tmdb-api/base.rb +2 -3
- data/lib/tmdb-api/changes.rb +29 -4
- data/lib/tmdb-api/movie.rb +2 -3
- data/lib/tmdb-api/version.rb +1 -1
- data/spec/fixtures/movie/credits.json +681 -0
- data/spec/tmdb-api/change_spec.rb +5 -8
- data/spec/tmdb-api/movie_spec.rb +7 -7
- data/tmdb-api.gemspec +3 -3
- metadata +31 -32
- data/spec/fixtures/movie/cast.json +0 -253
- data/spec/fixtures/movie/crew.json +0 -103
@@ -1,103 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"crew":
|
3
|
-
[
|
4
|
-
{
|
5
|
-
"id": 7469,
|
6
|
-
"name": "Jim Uhls",
|
7
|
-
"department": "Writing",
|
8
|
-
"job": "Author",
|
9
|
-
"profile_path": null
|
10
|
-
},
|
11
|
-
{
|
12
|
-
"id": 7474,
|
13
|
-
"name": "Ross Grayson Bell",
|
14
|
-
"department": "Production",
|
15
|
-
"job": "Producer",
|
16
|
-
"profile_path": null
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"id": 7475,
|
20
|
-
"name": "Ceán Chaffin",
|
21
|
-
"department": "Production",
|
22
|
-
"job": "Producer",
|
23
|
-
"profile_path": null
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"id": 1254,
|
27
|
-
"name": "Art Linson",
|
28
|
-
"department": "Production",
|
29
|
-
"job": "Producer",
|
30
|
-
"profile_path": "/dEtVivCXxQBtIzmJcUNupT1AB4H.jpg"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"id": 7477,
|
34
|
-
"name": "John King",
|
35
|
-
"department": "Sound",
|
36
|
-
"job": "Original Music Composer",
|
37
|
-
"profile_path": null
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"id": 7478,
|
41
|
-
"name": "Michael Simpson",
|
42
|
-
"department": "Sound",
|
43
|
-
"job": "Original Music Composer",
|
44
|
-
"profile_path": null
|
45
|
-
},
|
46
|
-
{
|
47
|
-
"id": 7479,
|
48
|
-
"name": "Jeff Cronenweth",
|
49
|
-
"department": "Camera",
|
50
|
-
"job": "Director of Photography",
|
51
|
-
"profile_path": null
|
52
|
-
},
|
53
|
-
{
|
54
|
-
"id": 7480,
|
55
|
-
"name": "James Haygood",
|
56
|
-
"department": "Editing",
|
57
|
-
"job": "Editor",
|
58
|
-
"profile_path": null
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"id": 7481,
|
62
|
-
"name": "Laray Mayfield",
|
63
|
-
"department": "Production",
|
64
|
-
"job": "Casting",
|
65
|
-
"profile_path": null
|
66
|
-
},
|
67
|
-
{
|
68
|
-
"id": 1303,
|
69
|
-
"name": "Alex McDowell",
|
70
|
-
"department": "Art",
|
71
|
-
"job": "Production Design",
|
72
|
-
"profile_path": null
|
73
|
-
},
|
74
|
-
{
|
75
|
-
"id": 7763,
|
76
|
-
"name": "Ren Klyce",
|
77
|
-
"department": "Sound",
|
78
|
-
"job": "Sound Editor",
|
79
|
-
"profile_path": null
|
80
|
-
},
|
81
|
-
{
|
82
|
-
"id": 7764,
|
83
|
-
"name": "Richard Hymns",
|
84
|
-
"department": "Sound",
|
85
|
-
"job": "Sound Editor",
|
86
|
-
"profile_path": null
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"id": 7467,
|
90
|
-
"name": "David Fincher",
|
91
|
-
"department": "Directing",
|
92
|
-
"job": "Director",
|
93
|
-
"profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg"
|
94
|
-
},
|
95
|
-
{
|
96
|
-
"id": 7468,
|
97
|
-
"name": "Chuck Palahniuk",
|
98
|
-
"department": "Writing",
|
99
|
-
"job": "Novel",
|
100
|
-
"profile_path": "/8nOJDJ6SqwV2h7PjdLBDTvIxXvx.jpg"
|
101
|
-
}
|
102
|
-
]
|
103
|
-
}
|