tomato_power 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/.gitignore +18 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +9 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +57 -0
  7. data/Rakefile +1 -0
  8. data/lib/tomato_power/api/api.rb +97 -0
  9. data/lib/tomato_power/api/tomato_methods.rb +82 -0
  10. data/lib/tomato_power/client.rb +35 -0
  11. data/lib/tomato_power/helpers/helpers.rb +12 -0
  12. data/lib/tomato_power/helpers/parsers.rb +28 -0
  13. data/lib/tomato_power/movie/actor.rb +12 -0
  14. data/lib/tomato_power/movie/clip.rb +10 -0
  15. data/lib/tomato_power/movie/movie.rb +56 -0
  16. data/lib/tomato_power/movie/review.rb +15 -0
  17. data/lib/tomato_power/version.rb +3 -0
  18. data/lib/tomato_power.rb +22 -0
  19. data/spec/spec_helper.rb +5 -0
  20. data/spec/support/sample_data/no_results +1 -0
  21. data/spec/support/sample_data/sample_actor +5 -0
  22. data/spec/support/sample_data/sample_actors +186 -0
  23. data/spec/support/sample_data/sample_alias +64 -0
  24. data/spec/support/sample_data/sample_clip +6 -0
  25. data/spec/support/sample_data/sample_clips +147 -0
  26. data/spec/support/sample_data/sample_movie +1 -0
  27. data/spec/support/sample_data/sample_movies +46 -0
  28. data/spec/support/sample_data/sample_review +8 -0
  29. data/spec/support/sample_data/sample_reviews +191 -0
  30. data/spec/support/vcr/TomatoPower_API/API_Methods/valid_methods/should_create_methods.yml +598 -0
  31. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_consider_0_options_valid.yml +306 -0
  32. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_not_raise_error.yml +101 -0
  33. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_return_a_list_of_movie_objects.yml +101 -0
  34. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_url_encode_search_string_before_sending.yml +102 -0
  35. data/spec/support/vcr/TomatoPower_API/List_request/should_return_a_list_of_movie_objects.yml +101 -0
  36. data/spec/support/vcr/TomatoPower_API/List_request/should_url_encode_search_string_before_sending.yml +102 -0
  37. data/spec/support/vcr/TomatoPower_API/Movie_request/cast/should_return_cast_of_movie.yml +356 -0
  38. data/spec/support/vcr/TomatoPower_API/Movie_request/clips/should_return_clips_of_movie.yml +638 -0
  39. data/spec/support/vcr/TomatoPower_API/Movie_request/no_results/should_return_error_string_if_no_results_are_found.yml +49 -0
  40. data/spec/support/vcr/TomatoPower_API/Movie_request/reviews/should_return_reviews.yml +271 -0
  41. data/spec/support/vcr/TomatoPower_API/Movie_request/should_return_single_movie.yml +161 -0
  42. data/spec/support/vcr/TomatoPower_API/Movie_request/similar/should_return_similar_movies.yml +121 -0
  43. data/spec/support/vcr/TomatoPower_Client/box_office_movies/should_return_list_of_movies.yml +396 -0
  44. data/spec/support/vcr/TomatoPower_Client/current_release_dvds/should_return_list_of_movies.yml +427 -0
  45. data/spec/support/vcr/TomatoPower_Client/in_theaters_movies/should_return_list_of_movies.yml +380 -0
  46. data/spec/support/vcr/TomatoPower_Client/new_release_dvds/should_return_list_of_movies.yml +392 -0
  47. data/spec/support/vcr/TomatoPower_Client/opening_movies/should_return_list_of_movies.yml +213 -0
  48. data/spec/support/vcr/TomatoPower_Client/search_by_id/should_return_list_of_movies_by_id.yml +88 -0
  49. data/spec/support/vcr/TomatoPower_Client/search_by_title/should_return_list_of_movies_by_title.yml +89 -0
  50. data/spec/support/vcr/TomatoPower_Client/top_rentals/should_return_list_of_movies.yml +409 -0
  51. data/spec/support/vcr/TomatoPower_Client/upcoming_dvds/should_return_list_of_movies.yml +359 -0
  52. data/spec/support/vcr/TomatoPower_Client/upcoming_movies/should_return_list_of_movies.yml +341 -0
  53. data/spec/support/vcr/TomatoPower_Movie/clips/should_return_clips.yml +250 -0
  54. data/spec/support/vcr/TomatoPower_Movie/full_cast/should_return_cast.yml +279 -0
  55. data/spec/support/vcr/TomatoPower_Movie/reviews/should_return_reviews.yml +205 -0
  56. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similar_movies.yml +231 -0
  57. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similars.yml +81 -0
  58. data/spec/support/vcr.rb +13 -0
  59. data/spec/unit_specs/actor_spec.rb +16 -0
  60. data/spec/unit_specs/api_spec.rb +126 -0
  61. data/spec/unit_specs/client_spec.rb +73 -0
  62. data/spec/unit_specs/clip_spec.rb +14 -0
  63. data/spec/unit_specs/helpers.rb +50 -0
  64. data/spec/unit_specs/helpers_spec.rb +4 -0
  65. data/spec/unit_specs/movie_spec.rb +75 -0
  66. data/spec/unit_specs/parsers_spec.rb +55 -0
  67. data/spec/unit_specs/review_spec.rb +17 -0
  68. data/spec/unit_specs/tomato_power_spec.rb +6 -0
  69. data/tomato_power.gemspec +29 -0
  70. metadata +295 -0
@@ -0,0 +1,186 @@
1
+ {
2
+ "cast": [
3
+ {
4
+ "id": "162655641",
5
+ "name": "Tom Hanks",
6
+ "characters": ["Woody"]
7
+ },
8
+ {
9
+ "id": "162655909",
10
+ "name": "Tim Allen",
11
+ "characters": ["Buzz Lightyear"]
12
+ },
13
+ {
14
+ "id": "162655020",
15
+ "name": "Joan Cusack",
16
+ "characters": ["Jessie the Cowgirl"]
17
+ },
18
+ {
19
+ "id": "341817905",
20
+ "name": "Don Rickles",
21
+ "characters": ["Mr. Potato Head"]
22
+ },
23
+ {
24
+ "id": "162671862",
25
+ "name": "Wallace Shawn",
26
+ "characters": ["Rex"]
27
+ },
28
+ {
29
+ "id": "162672460",
30
+ "name": "Ned Beatty",
31
+ "characters": [
32
+ "Lots-o'-Huggin' Bear",
33
+ "Lotso"
34
+ ]
35
+ },
36
+ {
37
+ "id": "381422124",
38
+ "name": "John Ratzenberger",
39
+ "characters": ["Hamm"]
40
+ },
41
+ {
42
+ "id": "746742134",
43
+ "name": "Estelle Harris",
44
+ "characters": ["Mrs. Potato Head"]
45
+ },
46
+ {
47
+ "id": "162652681",
48
+ "name": "Michael Keaton",
49
+ "characters": ["Ken"]
50
+ },
51
+ {
52
+ "id": "770691950",
53
+ "name": "John Morris",
54
+ "characters": ["Andy"]
55
+ },
56
+ {
57
+ "id": "771078865",
58
+ "name": "Emily Hahn",
59
+ "characters": ["Bonnie"]
60
+ },
61
+ {
62
+ "id": "162679021",
63
+ "name": "Laurie Metcalf",
64
+ "characters": ["Andy's Mom"]
65
+ },
66
+ {
67
+ "id": "364614516",
68
+ "name": "Blake Clark",
69
+ "characters": ["Slinky Dog"]
70
+ },
71
+ {
72
+ "id": "770673196",
73
+ "name": "Teddy Newton",
74
+ "characters": ["Chatter Telephone"]
75
+ },
76
+ {
77
+ "id": "770689970",
78
+ "name": "Bud Luckey",
79
+ "characters": ["Chuckles"]
80
+ },
81
+ {
82
+ "id": "770829444",
83
+ "name": "Beatrice Miller",
84
+ "characters": ["Molly"]
85
+ },
86
+ {
87
+ "id": "771078866",
88
+ "name": "Javier Fernandez-Pena",
89
+ "characters": ["Spanish Buzz"]
90
+ },
91
+ {
92
+ "id": "770671962",
93
+ "name": "Lori Alan",
94
+ "characters": ["Bonnie's Mom"]
95
+ },
96
+ {
97
+ "id": "771014702",
98
+ "name": "Jeff Pidgeon",
99
+ "characters": ["Aliens"]
100
+ },
101
+ {
102
+ "id": "770792145",
103
+ "name": "Kristen Schaal",
104
+ "characters": ["Trixie"]
105
+ },
106
+ {
107
+ "id": "771029413",
108
+ "name": "John Cygan",
109
+ "characters": ["Twitch"]
110
+ },
111
+ {
112
+ "id": "439092351",
113
+ "name": "Jack Angel",
114
+ "characters": ["Chunk"]
115
+ },
116
+ {
117
+ "id": "770924471",
118
+ "name": "Jan Rabson",
119
+ "characters": ["Sparks"]
120
+ },
121
+ {
122
+ "id": "162657445",
123
+ "name": "Richard Kind",
124
+ "characters": ["Bookworm"]
125
+ },
126
+ {
127
+ "id": "162654813",
128
+ "name": "Erik von Detten",
129
+ "characters": ["Sid"]
130
+ },
131
+ {
132
+ "id": "771078867",
133
+ "name": "Charlie Bright",
134
+ "characters": [
135
+ "Pea-in-a-Pod",
136
+ "Young Andy"
137
+ ]
138
+ },
139
+ {
140
+ "id": "771078868",
141
+ "name": "Amber Kroner",
142
+ "characters": ["Pea-in-a-Pod"]
143
+ },
144
+ {
145
+ "id": "771078869",
146
+ "name": "Brianna Maiwand",
147
+ "characters": ["Pea-in-a-Pod"]
148
+ },
149
+ {
150
+ "id": "568063685",
151
+ "name": "Jack Willis",
152
+ "characters": ["Frog"]
153
+ },
154
+ {
155
+ "id": "162655648",
156
+ "name": "Jodi Benson",
157
+ "characters": ["Barbie"]
158
+ },
159
+ {
160
+ "id": "162669781",
161
+ "name": "Timothy Dalton",
162
+ "characters": ["Mr. Pricklepants"]
163
+ },
164
+ {
165
+ "id": "162667962",
166
+ "name": "Jeff Garlin",
167
+ "characters": ["Buttercup"]
168
+ },
169
+ {
170
+ "id": "162653468",
171
+ "name": "Whoopi Goldberg",
172
+ "characters": ["Stretch"]
173
+ },
174
+ {
175
+ "id": "162654629",
176
+ "name": "Bonnie Hunt",
177
+ "characters": ["Dolly"]
178
+ },
179
+ {
180
+ "id": "162662280",
181
+ "name": "R. Lee Ermey",
182
+ "characters": ["Sarge"]
183
+ }
184
+ ],
185
+ "links": {"rel": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122.json"}
186
+ }
@@ -0,0 +1,64 @@
1
+ {
2
+ "id": 770672122,
3
+ "title": "Toy Story 3",
4
+ "year": 2010,
5
+ "genres": [
6
+ "Animation",
7
+ "Kids & Family",
8
+ "Science Fiction & Fantasy",
9
+ "Comedy"
10
+ ],
11
+ "mpaa_rating": "G",
12
+ "runtime": 103,
13
+ "critics_consensus": "Deftly blending comedy, adventure, and honest emotion, Toy Story 3 is a rare second sequel that really works.",
14
+ "release_dates": {
15
+ "theater": "2010-06-18",
16
+ "dvd": "2010-11-02"
17
+ },
18
+ "ratings": {
19
+ "critics_rating": "Certified Fresh",
20
+ "critics_score": 99,
21
+ "audience_rating": "Upright",
22
+ "audience_score": 91
23
+ },
24
+ "synopsis": "Pixar returns to their first success with Toy Story 3. The movie begins with Andy leaving for college and donating his beloved toys -- including Woody (Tom Hanks) and Buzz (Tim Allen) -- to a daycare. While the crew meets new friends, including Ken (Michael Keaton), they soon grow to hate their new surroundings and plan an escape. The film was directed by Lee Unkrich from a script co-authored by Little Miss Sunshine scribe Michael Arndt. ~ Perry Seibert, Rovi",
25
+ "posters": {
26
+ "thumbnail": "http://content6.flixster.com/movie/11/13/43/11134356_mob.jpg",
27
+ "profile": "http://content6.flixster.com/movie/11/13/43/11134356_pro.jpg",
28
+ "detailed": "http://content6.flixster.com/movie/11/13/43/11134356_det.jpg",
29
+ "original": "http://content6.flixster.com/movie/11/13/43/11134356_ori.jpg"
30
+ },
31
+ "abridged_cast": [
32
+ {
33
+ "name": "Tom Hanks",
34
+ "characters": ["Woody"]
35
+ },
36
+ {
37
+ "name": "Tim Allen",
38
+ "characters": ["Buzz Lightyear"]
39
+ },
40
+ {
41
+ "name": "Joan Cusack",
42
+ "characters": ["Jessie the Cowgirl"]
43
+ },
44
+ {
45
+ "name": "Don Rickles",
46
+ "characters": ["Mr. Potato Head"]
47
+ },
48
+ {
49
+ "name": "Wallace Shawn",
50
+ "characters": ["Rex"]
51
+ }
52
+ ],
53
+ "abridged_directors": [{"name": "Lee Unkrich"}],
54
+ "studio": "Walt Disney Pictures",
55
+ "alternate_ids": {"imdb": "0435761"},
56
+ "links": {
57
+ "self": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122.json",
58
+ "alternate": "http://www.rottentomatoes.com/m/toy_story_3/",
59
+ "cast": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/cast.json",
60
+ "clips": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/clips.json",
61
+ "reviews": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/reviews.json",
62
+ "similar": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/similar.json"
63
+ }
64
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "title": "Toy Story 3",
3
+ "duration": "150",
4
+ "thumbnail": "http://www.videodetective.com/photos/3465/14553712_.jpg",
5
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11028566"}
6
+ }
@@ -0,0 +1,147 @@
1
+ {
2
+ "clips": [
3
+ {
4
+ "title": "Toy Story 3",
5
+ "duration": "150",
6
+ "thumbnail": "http://www.videodetective.com/photos/3465/14553712_.jpg",
7
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11028566"}
8
+ },
9
+ {
10
+ "title": "TOY STORY 3: MEET KEN",
11
+ "duration": "103",
12
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6756/28378422_.jpg",
13
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11108601"}
14
+ },
15
+ {
16
+ "title": "TOY STORY 3: OLD FRIENDS ONLINE FEATURETTE",
17
+ "duration": "176",
18
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6789/28514638_.jpg",
19
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11110784"}
20
+ },
21
+ {
22
+ "title": "TOY STORY 3: LOOK ON THE SUNNYSIDE (ONLINE FEATURETTE)",
23
+ "duration": "196",
24
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6778/28470428_.jpg",
25
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11108600"}
26
+ },
27
+ {
28
+ "title": "TOY STORY 3: KEN'S DATING TIP 3",
29
+ "duration": "31",
30
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6789/28514412_.jpg",
31
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11110786"}
32
+ },
33
+ {
34
+ "title": "TOY STORY 3: KEN'S DATING TIP 2",
35
+ "duration": "31",
36
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6789/28514331_.jpg",
37
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11110787"}
38
+ },
39
+ {
40
+ "title": "TOY STORY 3: NEW FACES ONLINE FEATURETTE",
41
+ "duration": "220",
42
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6789/28514541_.jpg",
43
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11110785"}
44
+ },
45
+ {
46
+ "title": "Hawaiian Vacation",
47
+ "duration": "27",
48
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/7190/30201112_.jpg",
49
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11136817"}
50
+ },
51
+ {
52
+ "title": "TOY STORY 3: GROOVIN WITH KEN",
53
+ "duration": "103",
54
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6784/28494220_.jpg",
55
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11109466"}
56
+ },
57
+ {
58
+ "title": "TOY STORY 3: KEN'S DATING TIP 1",
59
+ "duration": "31",
60
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6789/28514242_.jpg",
61
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11110788"}
62
+ },
63
+ {
64
+ "title": "TOY STORY 3: GREAT ESCAPE POD",
65
+ "duration": "135",
66
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6786/28504939_.jpg",
67
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11110789"}
68
+ },
69
+ {
70
+ "title": "TOY STORY 3: CHARACTER TURN BUTTERCUP",
71
+ "duration": "15",
72
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6702/28150941_.jpg",
73
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11108602"}
74
+ },
75
+ {
76
+ "title": "TOY STORY 3: CHARACTER TURN PEAS-IN-A-POD",
77
+ "duration": "15",
78
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6702/28150701_.jpg",
79
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11108604"}
80
+ },
81
+ {
82
+ "title": "TOY STORY 3: CHARACTER TURN LOTS-O-HUGGIN' BEAR",
83
+ "duration": "15",
84
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6702/28150804_.jpg",
85
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11108603"}
86
+ },
87
+ {
88
+ "title": "Toy Story 3 (German)",
89
+ "duration": "60",
90
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/7274/858709_352.jpg",
91
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11144317"}
92
+ },
93
+ {
94
+ "title": "Toy Story 3 (French)",
95
+ "duration": "60",
96
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/7182/109722_544.jpg",
97
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11138189"}
98
+ },
99
+ {
100
+ "title": "TOY STORY 3 (TRAILER 2)",
101
+ "duration": "139",
102
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6690/28098522_3350.jpg",
103
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11098010"}
104
+ },
105
+ {
106
+ "title": "TOY STORY 3 (UK)",
107
+ "duration": "60",
108
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6688/636492_280.jpg",
109
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11098011"}
110
+ },
111
+ {
112
+ "title": "TOY STORY 3: SNEAK PEAK",
113
+ "duration": "116",
114
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6597/27710218_.jpg",
115
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11098012"}
116
+ },
117
+ {
118
+ "title": "TOY STORY 3 (TRAILER 1)",
119
+ "duration": "103",
120
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6445/27069527_.jpg",
121
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11098013"}
122
+ },
123
+ {
124
+ "title": "Toy Story 3 (Italian)",
125
+ "duration": "60",
126
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/7252/23570_300.jpg",
127
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11143856"}
128
+ },
129
+ {
130
+ "title": "Toy Story 3 (Spanish)",
131
+ "duration": "60",
132
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/7306/643978_925.jpg",
133
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11145925"}
134
+ },
135
+ {
136
+ "title": "TOY STORY 3: CHARACTER TURN KEN",
137
+ "duration": "15",
138
+ "thumbnail": "http://content.internetvideoarchive.com/content/photos/6702/28150645_.jpg",
139
+ "links": {"alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/11108605"}
140
+ }
141
+ ],
142
+ "links": {
143
+ "self": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/clips.json",
144
+ "alternate": "http://www.rottentomatoes.com/m/toy_story_3/trailers/",
145
+ "rel": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122.json"
146
+ }
147
+ }
@@ -0,0 +1 @@
1
+ {"id":"155654854","title":"Mission: Impossible III","year":2006,"mpaa_rating":"PG-13","runtime":127,"critics_consensus":"Fast-paced, with eye-popping stunts and special effects, the latest Mission: Impossible installment delivers everything an action fan could ask for. A thrilling summer popcorn flick.","release_dates":{"theater":"2006-05-05","dvd":"2006-10-30"},"ratings":{"critics_rating":"Fresh","critics_score":70,"audience_rating":"Upright","audience_score":69},"synopsis":"","posters":{"thumbnail":"http://content6.flixster.com/movie/10/93/36/10933612_mob.jpg","profile":"http://content6.flixster.com/movie/10/93/36/10933612_pro.jpg","detailed":"http://content6.flixster.com/movie/10/93/36/10933612_det.jpg","original":"http://content6.flixster.com/movie/10/93/36/10933612_ori.jpg"},"abridged_cast":[{"name":"Tom Cruise","id":"162652763","characters":["Ethan Hunt"]},{"name":"Philip Seymour Hoffman","id":"162654287","characters":["Owen Davian"]},{"name":"Ving Rhames","id":"162693220","characters":["Luther Strickell"]},{"name":"Billy Crudup","id":"162660766","characters":["Musgrave"]},{"name":"Michelle Monaghan","id":"162654801","characters":["Julia"]}],"alternate_ids":{"imdb":"0317919"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854.json","alternate":"http://www.rottentomatoes.com/m/mission_impossible_3/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/similar.json"}}
@@ -0,0 +1,46 @@
1
+ {
2
+ "total": 591,
3
+ "movies": [{
4
+ "title": "Jack and Jill",
5
+ "year": 2011,
6
+ "runtime": "",
7
+ "release_dates": {"theater": "2011-11-11"},
8
+ "ratings": {
9
+ "critics_score": -1,
10
+ "audience_score": 90
11
+ },
12
+ "synopsis": "",
13
+ "posters": {
14
+ "thumbnail": "http://images.rottentomatoescdn.com/images/redesign/poster_default.gif",
15
+ "profile": "http://images.rottentomatoescdn.com/images/redesign/poster_default.gif",
16
+ "detailed": "http://images.rottentomatoescdn.com/images/redesign/poster_default.gif",
17
+ "original": "http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"
18
+
19
+ },
20
+ "abridged_cast": [
21
+ {
22
+ "name": "Al Pacino",
23
+ "characters": []
24
+ },
25
+ {
26
+ "name": "Adam Sandler",
27
+ "characters": []
28
+ },
29
+ {
30
+ "name": "Katie Holmes",
31
+ "characters": []
32
+ }
33
+ ],
34
+ "links": {
35
+ "self": "http://api.rottentomatoes.com/api/public/v1.0/movies/771205893.json",
36
+ "alternate": "http://www.rottentomatoes.com/m/jack_and_jill_2011/"
37
+
38
+ }
39
+ }],
40
+ "links": {
41
+ "self": "http://api.rottentomatoes.com/api/public/v1.0/movies.json?q=Jack&page_limit=1&page=1",
42
+ "next": "http://api.rottentomatoes.com/api/public/v1.0/movies.json?q=Jack&page_limit=1&page=2"
43
+ },
44
+ "link_template": "http://api.rottentomatoes.com/api/public/v1.0/movies.json?q={search-term}&page={page-number}&page_limit={results-per-page}"
45
+
46
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "critic": "Joe Baltake",
3
+ "date": "2010-07-27",
4
+ "freshness": "fresh",
5
+ "publication": "Passionate Moviegoer",
6
+ "quote": "'Toy Story 3': Alternately affecting, hilarious and heartbreaking and the most original prison-escape movie ever made",
7
+ "links": {"review": "http://thepassionatemoviegoer.blogspot.com/2010/07/perfectimperfect.html"}
8
+ }
@@ -0,0 +1,191 @@
1
+ {
2
+ "total": 39,
3
+ "reviews": [
4
+ {
5
+ "critic": "Joe Baltake",
6
+ "date": "2010-07-27",
7
+ "freshness": "fresh",
8
+ "publication": "Passionate Moviegoer",
9
+ "quote": "'Toy Story 3': Alternately affecting, hilarious and heartbreaking and the most original prison-escape movie ever made",
10
+ "links": {"review": "http://thepassionatemoviegoer.blogspot.com/2010/07/perfectimperfect.html"}
11
+ },
12
+ {
13
+ "critic": "Rafer Guzman",
14
+ "date": "2010-07-06",
15
+ "freshness": "fresh",
16
+ "publication": "Newsday",
17
+ "quote": "It's sadder and scarier than its predecessors, but it also may be the most important chapter in the tale.",
18
+ "links": {"review": "http://www.newsday.com/entertainment/movies/toy-story-3-andy-grows-up-1.2028598"}
19
+ },
20
+ {
21
+ "critic": "Richard Roeper",
22
+ "date": "2010-06-30",
23
+ "original_score": "5/5",
24
+ "freshness": "fresh",
25
+ "publication": "Richard Roeper.com",
26
+ "quote": "The best movie of the year so far.",
27
+ "links": {"review": "http://www.richardroeper.com/reviews/toystory3.aspx"}
28
+ },
29
+ {
30
+ "critic": "David Edelstein",
31
+ "date": "2010-06-18",
32
+ "freshness": "fresh",
33
+ "publication": "New York Magazine",
34
+ "quote": "The gags are all of a piece, right up to the forlorn yet enchanting finale.",
35
+ "links": {"review": "http://nymag.com/movies/reviews/66799/"}
36
+ },
37
+ {
38
+ "critic": "Liam Lacey",
39
+ "date": "2010-06-18",
40
+ "original_score": "3/4",
41
+ "freshness": "fresh",
42
+ "publication": "Globe and Mail",
43
+ "quote": "At its best, most moving moments, Toy Story 3 is a story about the pang of a young adult moving away from home and leaving child-like things behind.",
44
+ "links": {"review": "http://www.theglobeandmail.com/news/arts/movies/toy-story-3-three-times-less-of-a-charm/article1607696/"}
45
+ },
46
+ {
47
+ "critic": "Peter Travers",
48
+ "date": "2010-06-18",
49
+ "original_score": "3.5/4",
50
+ "freshness": "fresh",
51
+ "publication": "Rolling Stone",
52
+ "quote": "It hits every button from laughter to tears and lifts you up on waves of visual dazzlement. And you don't need to take a kid along to appreciate it... Tag it as one of the year's best.",
53
+ "links": {"review": "http://www.rollingstone.com/movies/reviews/toy-story-3-20100617"}
54
+ },
55
+ {
56
+ "critic": "James Rocchi",
57
+ "date": "2010-06-18",
58
+ "original_score": "4.5/5",
59
+ "freshness": "fresh",
60
+ "publication": "MSN Movies",
61
+ "quote": "Toy Story 3 succeeds not because of its glossy and gleaming high-tech pixels, but rather because it is so well-written that you could tell it with low-tech hand puppets and still thrill and reach an audience of children and adults both.",
62
+ "links": {
63
+ "review": "http://movies.msn.com/movies/movie-critic-reviews/toy-story-3.2/",
64
+ "publication": "http://movies.msn.com"
65
+ }
66
+ },
67
+ {
68
+ "critic": "Lisa Kennedy",
69
+ "date": "2010-06-18",
70
+ "original_score": "3/4",
71
+ "freshness": "fresh",
72
+ "publication": "Denver Post",
73
+ "quote": "Consider the oft-amusing, terribly clever G-rated sequel Toy Story 3 as the brightest student in the class delivering a very fine B paper.",
74
+ "links": {"review": "http://www.denverpost.com/entertainmentheadlines/ci_15312141"}
75
+ },
76
+ {
77
+ "critic": "Christopher Orr",
78
+ "date": "2010-06-18",
79
+ "freshness": "fresh",
80
+ "publication": "The Atlantic",
81
+ "quote": "As Lotso, Ned Beatty offers the most compelling portrait of avuncular villainy since, well, Ned Beatty in Network, and Michael Keaton's Ken is the quintessence of himbo-ism.",
82
+ "links": {"review": "http://www.theatlantic.com/culture/archive/2010/06/the-simple-pleasure-of-toy-story-3/58325/"}
83
+ },
84
+ {
85
+ "critic": "Lou Lumenick",
86
+ "date": "2010-06-18",
87
+ "original_score": "3.5/4",
88
+ "freshness": "fresh",
89
+ "publication": "New York Post",
90
+ "quote": "Toy Story 3 may not be a masterpiece, but it still had me in tears at the end.",
91
+ "links": {"review": "http://www.nypost.com/p/entertainment/movies/great_escape_PXdfN7x7cHEaIvArzZpMsI"}
92
+ },
93
+ {
94
+ "critic": "Andrew O'Hehir",
95
+ "date": "2010-06-18",
96
+ "freshness": "fresh",
97
+ "publication": "Salon.com",
98
+ "quote": "A bona fide summer delight loaded with action, humor, nostalgia, a veritable blizzard of pop-culture references and general good vibes.",
99
+ "links": {"review": "http://www.salon.com/entertainment/movies/toy_story_3/index.html?story=/ent/movies/andrew_ohehir/2010/06/17/toy_story_3"}
100
+ },
101
+ {
102
+ "critic": "Stephen Whitty",
103
+ "date": "2010-06-18",
104
+ "original_score": "4/4",
105
+ "freshness": "fresh",
106
+ "publication": "Newark Star-Ledger",
107
+ "quote": "It's a sequel. It's in 3-D. It has no kiddie-flick competition. Really, how good does it have to be? Apparently, as good as Pixar can make it.",
108
+ "links": {"review": "http://www.nj.com/entertainment/movies/index.ssf/2010/06/toy_story_3_movie_review_a_story_that_just_keeps_getting_better.html"}
109
+ },
110
+ {
111
+ "critic": "Laremy Legel",
112
+ "date": "2010-06-17",
113
+ "original_score": "B+",
114
+ "freshness": "fresh",
115
+ "publication": "Film.com",
116
+ "quote": "A worthy finale to a fantastic franchise.",
117
+ "links": {"review": "http://www.film.com/features/story/review-toy-story-3-shines/38886308"}
118
+ },
119
+ {
120
+ "critic": "Mick LaSalle",
121
+ "date": "2010-06-17",
122
+ "original_score": "4/4",
123
+ "freshness": "fresh",
124
+ "publication": "San Francisco Chronicle",
125
+ "quote": "The story mixes comedy, drama and action with impressive skill, except this is beyond skill -- this is inspired.",
126
+ "links": {"review": "http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2010/06/18/MVRI1E05IA.DTL"}
127
+ },
128
+ {
129
+ "critic": "Joe Morgenstern",
130
+ "date": "2010-06-17",
131
+ "freshness": "fresh",
132
+ "publication": "Wall Street Journal",
133
+ "quote": "I won't tell you what that ending is, but it took my breath away, and I'll bet it takes yours. Do see this lovely film sooner than later.",
134
+ "links": {"review": "http://online.wsj.com/article/SB10001424052748704289504575312602886439646.html?mod=WSJ_ArtsEnt_LifestyleArtEnt_2"}
135
+ },
136
+ {
137
+ "critic": "Kenneth Turan",
138
+ "date": "2010-06-17",
139
+ "original_score": "4/5",
140
+ "freshness": "fresh",
141
+ "publication": "Los Angeles Times",
142
+ "quote": "Toy Story 3 pays attention to the reasons we return again and again to the motion picture experience.",
143
+ "links": {"review": "http://www.latimes.com/entertainment/news/la-et-toystory-20100618,0,2489391.story"}
144
+ },
145
+ {
146
+ "critic": "Richard Corliss",
147
+ "date": "2010-06-17",
148
+ "freshness": "fresh",
149
+ "publication": "TIME Magazine",
150
+ "quote": "Some toys -- and Toy Storys -- are to be treasured forever.",
151
+ "links": {"review": "http://www.time.com/time/magazine/article/0,9171,1993864,00.html"}
152
+ },
153
+ {
154
+ "critic": "Colin Covert",
155
+ "date": "2010-06-17",
156
+ "original_score": "4/4",
157
+ "freshness": "fresh",
158
+ "publication": "Minneapolis Star Tribune",
159
+ "quote": "I'd like to thank the folks at Pixar for ending Toy Story 3 with a nice long gag reel alongside the final credits. It gave me time to blot away my tears before entering the lobby.",
160
+ "links": {"review": "http://www.startribune.com/entertainment/movies/96575364.html?elr=KArksD:aDyaEP:kD:aUnc5PDiUiD3aPc:_Yyc:aULPQL7PQLanchO7DiUr"}
161
+ },
162
+ {
163
+ "critic": "Charlie McCollum",
164
+ "date": "2010-06-17",
165
+ "original_score": "3.5/4",
166
+ "freshness": "fresh",
167
+ "publication": "San Jose Mercury News",
168
+ "quote": "In a summer that will be littered with bad sequels, bad 3-D and bad storytelling, it is a movie to be heartily embraced.",
169
+ "links": {"review": "http://www.mercurynews.com/movies-dvd/ci_15304117?nclick_check=1"}
170
+ },
171
+ {
172
+ "critic": "Chris Vognar",
173
+ "date": "2010-06-17",
174
+ "original_score": "5/5",
175
+ "freshness": "fresh",
176
+ "publication": "Dallas Morning News",
177
+ "quote": "The technical wizardry only enhances Toy Story 3's emotional resonance.",
178
+ "links": {"review": "http://www.dallasnews.com/sharedcontent/dws/ent/movies/reviews/stories/061710dngdtoystory3.4eb1683.html"}
179
+ }
180
+ ],
181
+ "links": {
182
+ "self": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/reviews.json?review_type=top_critic&page_limit=20&country=us&page=1",
183
+ "next": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/reviews.json?review_type=top_critic&page_limit=20&country=us&page=2",
184
+ "alternate": "http://www.rottentomatoes.com/m/toy_story_3/#reviews",
185
+ "rel": "http://api.rottentomatoes.com/api/public/v1.0/movies/770672122.json"
186
+ },
187
+ "link_template": "http://api.rottentomatoes.com/api/public/v1.0/movies/{movie-id}/reviews.json?review_type={top_critic|all|dvd}&page_limit={results-per-page}&page={page-number}&country={country-code}"
188
+ }
189
+
190
+
191
+