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,49 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/1/reviews.json?apikey=<API_KEY>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Cache-Control:
20
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
21
+ Content-Language:
22
+ - en-US
23
+ Content-Type:
24
+ - text/javascript;charset=ISO-8859-1
25
+ Date:
26
+ - Thu, 21 Feb 2013 16:38:58 GMT
27
+ Expires:
28
+ - Sat, 6 May 1995 12:00:00 GMT
29
+ Pragma:
30
+ - no-cache
31
+ Server:
32
+ - Mashery Proxy
33
+ Set-Cookie:
34
+ - JSESSIONID=167DE1D899C2CFB05931EC2D6808F1F5.localhost; Path=/
35
+ - ServerID=1336; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1c-19.mashery.com
40
+ Content-Length:
41
+ - '522'
42
+ Connection:
43
+ - keep-alive
44
+ body:
45
+ encoding: US-ASCII
46
+ string: ! "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{\"total\":0,\"reviews\":[],\"links\":{\"self\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/1/reviews.json?review_type=top_critic&page_limit=20&country=us&page=1\",\"alternate\":\"http://www.rottentomatoes.com#reviews\",\"rel\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/1.json\"},\"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}\"}\n\n"
47
+ http_version:
48
+ recorded_at: Thu, 21 Feb 2013 16:38:58 GMT
49
+ recorded_with: VCR 2.4.0
@@ -0,0 +1,271 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/771189410/reviews.json?apikey=<API_KEY>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Cache-Control:
20
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
21
+ Content-Language:
22
+ - en-US
23
+ Content-Type:
24
+ - text/javascript;charset=ISO-8859-1
25
+ Date:
26
+ - Thu, 21 Feb 2013 16:19:34 GMT
27
+ Expires:
28
+ - Sat, 6 May 1995 12:00:00 GMT
29
+ Pragma:
30
+ - no-cache
31
+ Server:
32
+ - Mashery Proxy
33
+ Set-Cookie:
34
+ - JSESSIONID=B9FCEBAAD99158BB65F2057D3750F5E8.localhost; Path=/
35
+ - ServerID=1336; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1d-20.mashery.com
40
+ Content-Length:
41
+ - '563'
42
+ Connection:
43
+ - keep-alive
44
+ body:
45
+ encoding: US-ASCII
46
+ string: ! "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{\"total\":0,\"reviews\":[],\"links\":{\"self\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/771189410/reviews.json?review_type=top_critic&page_limit=20&country=us&page=1\",\"alternate\":\"http://www.rottentomatoes.com/m/jack_the_giant_slayer/#reviews\",\"rel\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/771189410.json\"},\"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}\"}\n\n"
47
+ http_version:
48
+ recorded_at: Thu, 21 Feb 2013 16:19:34 GMT
49
+ - request:
50
+ method: get
51
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/reviews.json?apikey=<API_KEY>
52
+ body:
53
+ encoding: US-ASCII
54
+ string: ''
55
+ headers:
56
+ Accept:
57
+ - ! '*/*'
58
+ User-Agent:
59
+ - Ruby
60
+ response:
61
+ status:
62
+ code: 200
63
+ message: OK
64
+ headers:
65
+ Cache-Control:
66
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
67
+ Content-Language:
68
+ - en-US
69
+ Content-Type:
70
+ - text/javascript;charset=ISO-8859-1
71
+ Date:
72
+ - Thu, 21 Feb 2013 16:37:34 GMT
73
+ Expires:
74
+ - Sat, 6 May 1995 12:00:00 GMT
75
+ Pragma:
76
+ - no-cache
77
+ Server:
78
+ - Mashery Proxy
79
+ Set-Cookie:
80
+ - JSESSIONID=EFB1BA6A16203E4E1B72FD85EDEFC2DB.localhost; Path=/
81
+ - ServerID=1336; Path=/
82
+ Vary:
83
+ - User-Agent,Accept-Encoding
84
+ X-Mashery-Responder:
85
+ - prod-j-worker-us-east-1d-20.mashery.com
86
+ Content-Length:
87
+ - '7670'
88
+ Connection:
89
+ - keep-alive
90
+ body:
91
+ encoding: US-ASCII
92
+ string: ! "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{\"total\":42,\"reviews\":[{\"critic\":\"Joe
93
+ Baltake\",\"date\":\"2010-07-27\",\"freshness\":\"fresh\",\"publication\":\"Passionate
94
+ Moviegoer\",\"quote\":\"'Toy Story 3': Alternately affecting, hilarious and
95
+ heartbreaking and the most original prison-escape movie ever made\",\"links\":{\"review\":\"http://thepassionatemoviegoer.blogspot.com/2010/07/perfectimperfect.html\"}},{\"critic\":\"Rafer
96
+ Guzman\",\"date\":\"2010-07-06\",\"freshness\":\"fresh\",\"publication\":\"Newsday\",\"quote\":\"It's
97
+ sadder and scarier than its predecessors, but it also may be the most important
98
+ chapter in the tale.\",\"links\":{\"review\":\"http://www.newsday.com/entertainment/movies/toy-story-3-andy-grows-up-1.2028598\"}},{\"critic\":\"Richard
99
+ Roeper\",\"date\":\"2010-06-30\",\"original_score\":\"5/5\",\"freshness\":\"fresh\",\"publication\":\"Richard
100
+ Roeper.com\",\"quote\":\"The best movie of the year so far.\",\"links\":{\"review\":\"http://www.richardroeper.com/reviews/toystory3.aspx\"}},{\"critic\":\"David
101
+ Edelstein\",\"date\":\"2010-06-18\",\"freshness\":\"fresh\",\"publication\":\"New
102
+ York Magazine\",\"quote\":\"The gags are all of a piece, right up to the forlorn
103
+ yet enchanting finale.\",\"links\":{\"review\":\"http://nymag.com/movies/reviews/66799/\"}},{\"critic\":\"Liam
104
+ Lacey\",\"date\":\"2010-06-18\",\"original_score\":\"3/4\",\"freshness\":\"fresh\",\"publication\":\"Globe
105
+ and Mail\",\"quote\":\"At its best, most moving moments, Toy Story 3 is a
106
+ story about the pang of a young adult moving away from home and leaving child-like
107
+ things behind.\",\"links\":{\"review\":\"http://www.theglobeandmail.com/news/arts/movies/toy-story-3-three-times-less-of-a-charm/article1607696/\"}},{\"critic\":\"Peter
108
+ Travers\",\"date\":\"2010-06-18\",\"original_score\":\"3.5/4\",\"freshness\":\"fresh\",\"publication\":\"Rolling
109
+ Stone\",\"quote\":\"It hits every button from laughter to tears and lifts
110
+ you up on waves of visual dazzlement. And you don't need to take a kid along
111
+ to appreciate it... Tag it as one of the year's best.\",\"links\":{\"review\":\"http://www.rollingstone.com/movies/reviews/toy-story-3-20100617\"}},{\"critic\":\"James
112
+ Rocchi\",\"date\":\"2010-06-18\",\"original_score\":\"4.5/5\",\"freshness\":\"fresh\",\"publication\":\"MSN
113
+ Movies\",\"quote\":\"Toy Story 3 succeeds not because of its glossy and gleaming
114
+ high-tech pixels, but rather because it is so well-written that you could
115
+ tell it with low-tech hand puppets and still thrill and reach an audience
116
+ of children and adults both.\",\"links\":{\"review\":\"http://movies.msn.com/movies/movie-critic-reviews/toy-story-3.2/\"}},{\"critic\":\"Lisa
117
+ Kennedy\",\"date\":\"2010-06-18\",\"original_score\":\"3/4\",\"freshness\":\"fresh\",\"publication\":\"Denver
118
+ Post\",\"quote\":\"Consider the oft-amusing, terribly clever G-rated sequel
119
+ Toy Story 3 as the brightest student in the class delivering a very fine B
120
+ paper.\",\"links\":{\"review\":\"http://www.denverpost.com/entertainmentheadlines/ci_15312141\"}},{\"critic\":\"Christopher
121
+ Orr\",\"date\":\"2010-06-18\",\"freshness\":\"fresh\",\"publication\":\"The
122
+ Atlantic\",\"quote\":\"As Lotso, Ned Beatty offers the most compelling portrait
123
+ of avuncular villainy since, well, Ned Beatty in Network, and Michael Keaton's
124
+ Ken is the quintessence of himbo-ism.\",\"links\":{\"review\":\"http://www.theatlantic.com/culture/archive/2010/06/the-simple-pleasure-of-toy-story-3/58325/\"}},{\"critic\":\"Lou
125
+ Lumenick\",\"date\":\"2010-06-18\",\"original_score\":\"3.5/4\",\"freshness\":\"fresh\",\"publication\":\"New
126
+ York Post\",\"quote\":\"Toy Story 3 may not be a masterpiece, but it still
127
+ had me in tears at the end.\",\"links\":{\"review\":\"http://www.nypost.com/p/entertainment/movies/great_escape_PXdfN7x7cHEaIvArzZpMsI\"}},{\"critic\":\"Andrew
128
+ O'Hehir\",\"date\":\"2010-06-18\",\"freshness\":\"fresh\",\"publication\":\"Salon.com\",\"quote\":\"A
129
+ bona fide summer delight loaded with action, humor, nostalgia, a veritable
130
+ blizzard of pop-culture references and general good vibes.\",\"links\":{\"review\":\"http://www.salon.com/entertainment/movies/toy_story_3/index.html?story=/ent/movies/andrew_ohehir/2010/06/17/toy_story_3\"}},{\"critic\":\"Stephen
131
+ Whitty\",\"date\":\"2010-06-18\",\"original_score\":\"4/4\",\"freshness\":\"fresh\",\"publication\":\"Newark
132
+ Star-Ledger\",\"quote\":\"It's a sequel. It's in 3-D. It has no kiddie-flick
133
+ competition. Really, how good does it have to be? Apparently, as good as Pixar
134
+ can make it.\",\"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\"}},{\"critic\":\"Laremy
135
+ Legel\",\"date\":\"2010-06-17\",\"original_score\":\"B+\",\"freshness\":\"fresh\",\"publication\":\"Film.com\",\"quote\":\"A
136
+ worthy finale to a fantastic franchise.\",\"links\":{\"review\":\"http://www.film.com/features/story/review-toy-story-3-shines/38886308\"}},{\"critic\":\"Mick
137
+ LaSalle\",\"date\":\"2010-06-17\",\"original_score\":\"4/4\",\"freshness\":\"fresh\",\"publication\":\"San
138
+ Francisco Chronicle\",\"quote\":\"The story mixes comedy, drama and action
139
+ with impressive skill, except this is beyond skill -- this is inspired.\",\"links\":{\"review\":\"http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2010/06/18/MVRI1E05IA.DTL\"}},{\"critic\":\"Joe
140
+ Morgenstern\",\"date\":\"2010-06-17\",\"freshness\":\"fresh\",\"publication\":\"Wall
141
+ Street Journal\",\"quote\":\"I won't tell you what that ending is, but it
142
+ took my breath away, and I'll bet it takes yours. Do see this lovely film
143
+ sooner than later.\",\"links\":{\"review\":\"http://online.wsj.com/article/SB10001424052748704289504575312602886439646.html?mod=WSJ_ArtsEnt_LifestyleArtEnt_2\"}},{\"critic\":\"Kenneth
144
+ Turan\",\"date\":\"2010-06-17\",\"original_score\":\"4/5\",\"freshness\":\"fresh\",\"publication\":\"Los
145
+ Angeles Times\",\"quote\":\"Toy Story 3 pays attention to the reasons we return
146
+ again and again to the motion picture experience.\",\"links\":{\"review\":\"http://www.latimes.com/entertainment/news/la-et-toystory-20100618,0,2489391.story\"}},{\"critic\":\"Richard
147
+ Corliss\",\"date\":\"2010-06-17\",\"freshness\":\"fresh\",\"publication\":\"TIME
148
+ Magazine\",\"quote\":\"Some toys -- and Toy Storys -- are to be treasured
149
+ forever.\",\"links\":{\"review\":\"http://www.time.com/time/magazine/article/0,9171,1993864,00.html\"}},{\"critic\":\"Colin
150
+ Covert\",\"date\":\"2010-06-17\",\"original_score\":\"4/4\",\"freshness\":\"fresh\",\"publication\":\"Minneapolis
151
+ Star Tribune\",\"quote\":\"I'd like to thank the folks at Pixar for ending
152
+ Toy Story 3 with a nice long gag reel alongside the final credits. It gave
153
+ me time to blot away my tears before entering the lobby.\",\"links\":{\"review\":\"http://www.startribune.com/entertainment/movies/96575364.html?elr=KArksD:aDyaEP:kD:aUnc5PDiUiD3aPc:_Yyc:aULPQL7PQLanchO7DiUr\"}},{\"critic\":\"Charlie
154
+ McCollum\",\"date\":\"2010-06-17\",\"original_score\":\"3.5/4\",\"freshness\":\"fresh\",\"publication\":\"San
155
+ Jose Mercury News\",\"quote\":\"In a summer that will be littered with bad
156
+ sequels, bad 3-D and bad storytelling, it is a movie to be heartily embraced.\",\"links\":{\"review\":\"http://www.mercurynews.com/movies-dvd/ci_15304117?nclick_check=1\"}},{\"critic\":\"Peter
157
+ Rainer\",\"date\":\"2010-06-17\",\"original_score\":\"A\",\"freshness\":\"fresh\",\"publication\":\"Christian
158
+ Science Monitor\",\"quote\":\"The best children's films aren't only for children.\",\"links\":{\"review\":\"http://www.csmonitor.com/The-Culture/Movies/2010/0617/Toy-Story-3-Pixar-s-Toy-Story-movies-keep-getting-better-and-better\"}}],\"links\":{\"self\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/reviews.json?review_type=top_critic&page_limit=20&country=us&page=1\",\"next\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/770672122/reviews.json?review_type=top_critic&page_limit=20&country=us&page=2\",\"alternate\":\"http://www.rottentomatoes.com/m/toy_story_3/#reviews\",\"rel\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/770672122.json\"},\"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}\"}\n\n"
159
+ http_version:
160
+ recorded_at: Thu, 21 Feb 2013 16:37:34 GMT
161
+ - request:
162
+ method: get
163
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/reviews.json?apikey=<API_KEY>
164
+ body:
165
+ encoding: US-ASCII
166
+ string: ''
167
+ headers:
168
+ Accept:
169
+ - ! '*/*'
170
+ User-Agent:
171
+ - Ruby
172
+ response:
173
+ status:
174
+ code: 200
175
+ message: OK
176
+ headers:
177
+ Cache-Control:
178
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
179
+ Content-Language:
180
+ - en-US
181
+ Content-Type:
182
+ - text/javascript;charset=ISO-8859-1
183
+ Date:
184
+ - Thu, 21 Feb 2013 16:53:13 GMT
185
+ Expires:
186
+ - Sat, 6 May 1995 12:00:00 GMT
187
+ Pragma:
188
+ - no-cache
189
+ Server:
190
+ - Mashery Proxy
191
+ Set-Cookie:
192
+ - JSESSIONID=4786A5E950385D2FB424A91199BF3E26.localhost; Path=/
193
+ - ServerID=1336; Path=/
194
+ Vary:
195
+ - User-Agent,Accept-Encoding
196
+ X-Mashery-Responder:
197
+ - prod-j-worker-us-east-1d-20.mashery.com
198
+ Content-Length:
199
+ - '7300'
200
+ Connection:
201
+ - keep-alive
202
+ body:
203
+ encoding: US-ASCII
204
+ string: ! "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{\"total\":45,\"reviews\":[{\"critic\":\"David
205
+ Ansen\",\"date\":\"2007-11-01\",\"freshness\":\"fresh\",\"publication\":\"Newsweek\",\"quote\":\"...this
206
+ snappy installment is a marked improvement over John Woo's surprisingly dull
207
+ sequel, though the set pieces lack the elegance and visual coherence of the
208
+ Brian de Palma original.\",\"links\":{\"review\":\"http://www.newsweek.com/id/47763\"}},{\"critic\":\"Joe
209
+ Morgenstern\",\"date\":\"2006-06-22\",\"freshness\":\"fresh\",\"publication\":\"Wall
210
+ Street Journal\",\"quote\":\"The summer's first action epic does exactly what
211
+ it's supposed to do, more clearly than M:i:I, and more likeably than M:i:II.\",\"links\":{\"review\":\"http://online.wsj.com/search/aggregate.html?article-doc-type={Film%20Review}&KEYWORDS=%2A&COLLECTIONS=wsjie/archive&HEADER_TEXT=FILM+REVIEWS#SB114678304896244245\"}},{\"critic\":\"Rex
212
+ Reed\",\"date\":\"2006-05-10\",\"freshness\":\"rotten\",\"publication\":\"New
213
+ York Observer\",\"quote\":\"As idiot movies go, this one is as sub-mental
214
+ as you might expect.\",\"links\":{\"review\":\"http://nyobserver.com/20060515/20060515_Rex_Reed_culture_rexreed.asp\"}},{\"critic\":\"Andrew
215
+ Sarris\",\"date\":\"2006-05-10\",\"freshness\":\"rotten\",\"publication\":\"New
216
+ York Observer\",\"quote\":\"My final reaction to Mission: Impossible III is
217
+ one of bemused tolerance and even mild absorption in all the silliness.\",\"links\":{\"review\":\"http://www.observer.com/node/38831\"}},{\"critic\":\"David
218
+ Edelstein\",\"date\":\"2006-05-09\",\"freshness\":\"rotten\",\"publication\":\"New
219
+ York Magazine\",\"quote\":\"There are no flourishes to savor. Instead, there
220
+ are big-deal stunts.\",\"links\":{\"review\":\"http://nymag.com/movies/reviews/16931/\"}},{\"critic\":\"Anthony
221
+ Lane\",\"date\":\"2006-05-08\",\"freshness\":\"rotten\",\"publication\":\"New
222
+ Yorker\",\"quote\":\"The grand finale? A fistfight, after which somebody gets
223
+ run over. Listen, if I want to see that kind of action, I don't go to Shanghai.
224
+ I don't even go to the movies. I go to the South Bronx and stand outside a
225
+ bar.\",\"links\":{}},{\"critic\":\"Richard Roeper\",\"date\":\"2006-05-08\",\"freshness\":\"fresh\",\"publication\":\"Ebert
226
+ & Roeper\",\"quote\":\"The best of the three.\",\"links\":{\"review\":\"http://tvplex.go.com/buenavista/ebertandroeper/mp3/060508-mission_impossible_3.mp3\"}},{\"critic\":\"Peter
227
+ Howell\",\"date\":\"2006-05-05\",\"original_score\":\"2.5/4\",\"freshness\":\"rotten\",\"publication\":\"Toronto
228
+ Star\",\"quote\":\"Abrams knows how to frame a shot and how to propulsively
229
+ push both action and love stories, but logic continues to elude him as much
230
+ as it did De Palma and Woo.\",\"links\":{\"review\":\"http://WWW.TheStar.COM/NASApp/cs/ContentServer?pagename=thestar/Layout/Article_Type1&c=Article&cid=1146823301972&call_pageid=1022183557980&col=1022183560753\"}},{\"critic\":\"Roger
231
+ Moore\",\"date\":\"2006-05-05\",\"original_score\":\"4/5\",\"freshness\":\"fresh\",\"publication\":\"Orlando
232
+ Sentinel\",\"quote\":\"If Mission: Impossible 3 is the first pitch of the
233
+ popcorn-movie season, just two words come to mind -- butter up.\",\"links\":{\"review\":\"http://www.orlandosentinel.com/entertainment/movies/orl-db-moviereviews-searchresults,0,3279701,results.formprofile?turbine_cdb_lib__cdb_01_txt=Mission%20Impossible%20III&Find+it%21=Submit+Query\"}},{\"critic\":\"Liam
234
+ Lacey\",\"date\":\"2006-05-05\",\"original_score\":\"3/4\",\"freshness\":\"fresh\",\"publication\":\"Globe
235
+ and Mail\",\"quote\":\"What summer movies aspire to -- a slick demonstration
236
+ of hot buttered entertainment that will probably slide you right out of the
237
+ theatre before you even stop to ask a logical question or two.\",\"links\":{\"review\":\"http://www.theglobeandmail.com/servlet/story/RTGAM.20060505.wxmission05/BNStory/Entertainment/home\"}},{\"critic\":\"Robert
238
+ Denerstein\",\"date\":\"2006-05-05\",\"original_score\":\"B\",\"freshness\":\"fresh\",\"publication\":\"Denver
239
+ Rocky Mountain News\",\"quote\":\"For all the attempts at adding depth, it's
240
+ likely that audiences will come away remembering the fireworks.\",\"links\":{}},{\"critic\":\"Michael
241
+ Booth\",\"date\":\"2006-05-05\",\"original_score\":\"3/4\",\"freshness\":\"fresh\",\"publication\":\"Denver
242
+ Post\",\"quote\":\"All the popcorn season really wants is a good reason to
243
+ see super-fit bodies flying around on a big screen, and M:I:III gits 'er done.\",\"links\":{\"review\":\"http://www.denverpost.com/movies/ci_3782203\"}},{\"critic\":\"Philip
244
+ Wuntch\",\"date\":\"2006-05-05\",\"original_score\":\"A-\",\"freshness\":\"fresh\",\"publication\":\"Dallas
245
+ Morning News\",\"quote\":\"Mission: Impossible III will make you jump up and
246
+ down with exuberance, just like its star.\",\"links\":{\"review\":\"http://www.guidelive.com/pls/portal/url/page/LSDallasPageGroup/MovieDetail?item_id=44337\"}},{\"critic\":\"Bill
247
+ Muller\",\"date\":\"2006-05-05\",\"freshness\":\"rotten\",\"publication\":\"Arizona
248
+ Republic\",\"quote\":\"Director Abrams seems to have attended the Tony Scott
249
+ Extreme Closeup Academy.\",\"links\":{\"review\":\"http://www.azcentral.com/ent/movies/articles/0505mission0505.html\"}},{\"critic\":\"Carrie
250
+ Rickey\",\"date\":\"2006-05-04\",\"original_score\":\"3/4\",\"freshness\":\"fresh\",\"publication\":\"Philadelphia
251
+ Inquirer\",\"quote\":\"Whatever your feelings about Cruise, Mission: Impossible
252
+ III is nirvana for thrill seekers.\",\"links\":{}},{\"critic\":\"Ann Hornaday\",\"date\":\"2006-05-04\",\"freshness\":\"fresh\",\"publication\":\"Washington
253
+ Post\",\"quote\":\"Director J.J. Abrams, creator of such TV hits as Alias
254
+ and Lost, makes a reasonably impressive feature debut with the best installment
255
+ of the series.\",\"links\":{\"review\":\"http://www.washingtonpost.com/wp-dyn/content/article/2006/05/04/AR2006050402070.html\"}},{\"critic\":\"James
256
+ Berardinelli\",\"date\":\"2006-05-04\",\"original_score\":\"2.5/4\",\"freshness\":\"rotten\",\"publication\":\"ReelViews\",\"quote\":\"Mission:
257
+ Impossible III provides lots of action, but too little excitement.\",\"links\":{\"review\":\"http://www.reelviews.net/php_review_template.php?identifier=1033\"}},{\"critic\":\"Manohla
258
+ Dargis\",\"date\":\"2006-05-04\",\"original_score\":\"2.5/5\",\"freshness\":\"rotten\",\"publication\":\"New
259
+ York Times\",\"quote\":\"Although he slams into stationary objects with his
260
+ customary zeal, Tom Cruise is off his game here, sabotaged by a misguided
261
+ attempt to shade his character with gray.\",\"links\":{}},{\"critic\":\"Peter
262
+ Rainer\",\"date\":\"2006-05-04\",\"original_score\":\"B+\",\"freshness\":\"fresh\",\"publication\":\"Christian
263
+ Science Monitor\",\"quote\":\"It's an expertly engineered popcorn movie --
264
+ hold the butter substitute -- but it also tries (and fails) to be a love story
265
+ for the ages.\",\"links\":{\"review\":\"http://www.csmonitor.com/2006/0505/p11s01-almo.html\"}},{\"critic\":\"Colin
266
+ Covert\",\"date\":\"2006-05-04\",\"original_score\":\"3/4\",\"freshness\":\"fresh\",\"publication\":\"Minneapolis
267
+ Star Tribune\",\"quote\":\"A smart, tightly directed thriller that could serve
268
+ as the template for film schools teaching Summertime Escapism 101.\",\"links\":{\"review\":\"http://www.startribune.com/412/story/412097.html\"}}],\"links\":{\"self\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/reviews.json?review_type=top_critic&page_limit=20&country=us&page=1\",\"next\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/reviews.json?review_type=top_critic&page_limit=20&country=us&page=2\",\"alternate\":\"http://www.rottentomatoes.com/m/mission_impossible_3/#reviews\",\"rel\":\"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854.json\"},\"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}\"}\n\n"
269
+ http_version:
270
+ recorded_at: Thu, 21 Feb 2013 16:53:13 GMT
271
+ recorded_with: VCR 2.4.0
@@ -0,0 +1,161 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/id/cast.json?apikey=<API_KEY>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Cache-Control:
20
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
21
+ Content-Language:
22
+ - en-US
23
+ Content-Type:
24
+ - text/javascript;charset=ISO-8859-1
25
+ Date:
26
+ - Wed, 20 Feb 2013 15:31:49 GMT
27
+ Expires:
28
+ - Sat, 6 May 1995 12:00:00 GMT
29
+ Pragma:
30
+ - no-cache
31
+ Server:
32
+ - Mashery Proxy
33
+ Set-Cookie:
34
+ - JSESSIONID=6450329781AF6E362EA719E35A0EFD83.localhost; Path=/
35
+ - ServerID=1335; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1b-16.mashery.com
40
+ Content-Length:
41
+ - '117'
42
+ Connection:
43
+ - keep-alive
44
+ body:
45
+ encoding: US-ASCII
46
+ string: ! '
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+ {"cast":[],"links":{"rel":"http://api.rottentomatoes.com/api/public/v1.0/movies/.json"}}
76
+
77
+ '
78
+ http_version:
79
+ recorded_at: Wed, 20 Feb 2013 15:31:49 GMT
80
+ - request:
81
+ method: get
82
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/771189410/cast.json?apikey=<API_KEY>
83
+ body:
84
+ encoding: US-ASCII
85
+ string: ''
86
+ headers:
87
+ Accept:
88
+ - ! '*/*'
89
+ User-Agent:
90
+ - Ruby
91
+ response:
92
+ status:
93
+ code: 200
94
+ message: OK
95
+ headers:
96
+ Cache-Control:
97
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
98
+ Content-Language:
99
+ - en-US
100
+ Content-Type:
101
+ - text/javascript;charset=ISO-8859-1
102
+ Date:
103
+ - Wed, 20 Feb 2013 15:33:01 GMT
104
+ Expires:
105
+ - Sat, 6 May 1995 12:00:00 GMT
106
+ Pragma:
107
+ - no-cache
108
+ Server:
109
+ - Mashery Proxy
110
+ Set-Cookie:
111
+ - JSESSIONID=645D6C4BEC2354F3654CC18AD7517D85.localhost; Path=/
112
+ - ServerID=1336; Path=/
113
+ Vary:
114
+ - User-Agent,Accept-Encoding
115
+ X-Mashery-Responder:
116
+ - prod-j-worker-us-east-1d-15.mashery.com
117
+ Content-Length:
118
+ - '643'
119
+ Connection:
120
+ - keep-alive
121
+ body:
122
+ encoding: US-ASCII
123
+ string: ! '
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+ {"cast":[{"id":"162654938","name":"Nicholas Hoult","characters":["Jack"]},{"id":"770707131","name":"Eleanor
153
+ Tomlinson","characters":[]},{"id":"162661152","name":"Stanley Tucci","characters":["Roderick"]},{"id":"326396263","name":"Ian
154
+ McShane","characters":["King Brahmwell"]},{"id":"162652300","name":"Bill Nighy","characters":["Fallon"]},{"id":"162652152","name":"Ewan
155
+ McGregor","characters":["Elmont"]},{"id":"770696805","name":"John Kassir","characters":["Fallon"]},{"id":"162659692","name":"Warwick
156
+ Davis","characters":[]}],"links":{"rel":"http://api.rottentomatoes.com/api/public/v1.0/movies/771189410.json"}}
157
+
158
+ '
159
+ http_version:
160
+ recorded_at: Wed, 20 Feb 2013 15:33:01 GMT
161
+ recorded_with: VCR 2.4.0
@@ -0,0 +1,121 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/similar.json?apikey=<API_KEY>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Cache-Control:
20
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
21
+ Content-Language:
22
+ - en-US
23
+ Content-Type:
24
+ - text/javascript;charset=ISO-8859-1
25
+ Date:
26
+ - Thu, 21 Feb 2013 18:11:07 GMT
27
+ Expires:
28
+ - Sat, 6 May 1995 12:00:00 GMT
29
+ Pragma:
30
+ - no-cache
31
+ Server:
32
+ - Mashery Proxy
33
+ Set-Cookie:
34
+ - JSESSIONID=CF80AF51D73A29B1BA77BDADE5D0392B.localhost; Path=/
35
+ - ServerID=1336; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1c-14.mashery.com
40
+ Transfer-Encoding:
41
+ - chunked
42
+ Connection:
43
+ - keep-alive
44
+ body:
45
+ encoding: US-ASCII
46
+ string: ! '
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+ {"movies":[{"id":"10753","title":"Mission: Impossible","year":1996,"mpaa_rating":"PG-13","runtime":110,"critics_consensus":"Full
77
+ of special effects, Brian DePalma''s update of Mission: Impossible has a lot
78
+ of sweeping spectacle, but the plot is sometimes convoluted.","release_dates":{"theater":"1996-05-22","dvd":"1998-01-17"},"ratings":{"critics_rating":"Fresh","critics_score":61,"audience_rating":"Upright","audience_score":70},"synopsis":"","posters":{"thumbnail":"http://content9.flixster.com/movie/25/73/257307_mob.jpg","profile":"http://content9.flixster.com/movie/25/73/257307_pro.jpg","detailed":"http://content9.flixster.com/movie/25/73/257307_det.jpg","original":"http://content9.flixster.com/movie/25/73/257307_ori.jpg"},"abridged_cast":[{"name":"Tom
79
+ Cruise","id":"162652763","characters":["Ethan Hunt"]},{"name":"Jon Voight","id":"162664393","characters":["Jim
80
+ Phelps"]},{"name":"Emmanuelle Beart","id":"162666753","characters":["Claire"]},{"name":"Henry
81
+ Czerny","id":"343941171","characters":["Kittridge"]},{"name":"Jean Reno","id":"162653166","characters":["Krieger"]}],"alternate_ids":{"imdb":"0117060"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/10753.json","alternate":"http://www.rottentomatoes.com/m/mission_impossible/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/10753/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/10753/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/10753/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/10753/similar.json"}},{"id":"10840","title":"Mission:
82
+ Impossible 2","year":2000,"mpaa_rating":"PG-13","runtime":123,"critics_consensus":"Your
83
+ cranium may crave more substance, but your eyes will feast on the amazing
84
+ action sequences.","release_dates":{"theater":"2000-12-31","dvd":"2000-11-07"},"ratings":{"critics_rating":"Rotten","critics_score":57,"audience_rating":"Spilled","audience_score":55},"synopsis":"","posters":{"thumbnail":"http://content9.flixster.com/movie/25/77/257715_mob.jpg","profile":"http://content9.flixster.com/movie/25/77/257715_pro.jpg","detailed":"http://content9.flixster.com/movie/25/77/257715_det.jpg","original":"http://content9.flixster.com/movie/25/77/257715_ori.jpg"},"abridged_cast":[{"name":"Tom
85
+ Cruise","id":"162652763","characters":["Ethan Hunt"]},{"name":"Dougray Scott","id":"162652857","characters":["Sean
86
+ Ambrose"]},{"name":"Thandie Newton","id":"162708663","characters":["Nyah Hall"]},{"name":"Ving
87
+ Rhames","id":"162693220","characters":["Luther Stickwell"]},{"name":"Richard
88
+ Roxburgh","id":"162652977","characters":["Hugh Stamp"]}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/10840.json","alternate":"http://www.rottentomatoes.com/m/mission_impossible_2/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/10840/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/10840/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/10840/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/10840/similar.json"}},{"id":"11357","title":"The
89
+ Bourne Identity","year":2002,"mpaa_rating":"PG-13","runtime":117,"critics_consensus":"Expertly
90
+ blending genre formula with bursts of unexpected wit, The Bourne Identity
91
+ is an action thriller that delivers -- and then some.","release_dates":{"theater":"2002-06-14","dvd":"2003-01-21"},"ratings":{"critics_rating":"Certified
92
+ Fresh","critics_score":83,"audience_rating":"Upright","audience_score":91},"synopsis":"","posters":{"thumbnail":"http://content9.flixster.com/movie/10/81/65/10816575_mob.jpg","profile":"http://content9.flixster.com/movie/10/81/65/10816575_pro.jpg","detailed":"http://content9.flixster.com/movie/10/81/65/10816575_det.jpg","original":"http://content9.flixster.com/movie/10/81/65/10816575_ori.jpg"},"abridged_cast":[{"name":"Matt
93
+ Damon","id":"162653499","characters":["Jason Bourne"]},{"name":"Franka Potente","id":"162655083","characters":["Marie
94
+ Kreutz"]},{"name":"Clive Owen","id":"162652511","characters":["The Professor"]},{"name":"Chris
95
+ Cooper","id":"162654289","characters":["Ted Conklin"]},{"name":"Brian Cox","id":"162653324","characters":["Ward
96
+ Abbott"]}],"alternate_ids":{"imdb":"0258463"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/11357.json","alternate":"http://www.rottentomatoes.com/m/bourne_identity/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/11357/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/11357/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/11357/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/11357/similar.json"}},{"id":"10084","title":"The
97
+ Bourne Supremacy","year":2004,"mpaa_rating":"PG-13","runtime":108,"critics_consensus":"A
98
+ well-maded sequel that delivers the thrills.","release_dates":{"theater":"2004-07-23","dvd":"2004-12-07"},"ratings":{"critics_rating":"Certified
99
+ Fresh","critics_score":81,"audience_rating":"Upright","audience_score":89},"synopsis":"","posters":{"thumbnail":"http://content8.flixster.com/movie/10/81/65/10816574_mob.jpg","profile":"http://content8.flixster.com/movie/10/81/65/10816574_pro.jpg","detailed":"http://content8.flixster.com/movie/10/81/65/10816574_det.jpg","original":"http://content8.flixster.com/movie/10/81/65/10816574_ori.jpg"},"abridged_cast":[{"name":"Matt
100
+ Damon","id":"162653499","characters":["David Webb/Jason Bourne"]},{"name":"Franka
101
+ Potente","id":"162655083","characters":["Marie"]},{"name":"Brian Cox","id":"162653324","characters":["Ward
102
+ Abbott"]},{"name":"Julia Stiles","id":"162660056","characters":["Nicky","Nicky
103
+ Parsons"]},{"name":"Karl Urban","id":"162654704","characters":["Kirill"]}],"alternate_ids":{"imdb":"0372183"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/10084.json","alternate":"http://www.rottentomatoes.com/m/bourne_supremacy/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/10084/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/10084/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/10084/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/10084/similar.json"}},{"id":"770863873","title":"Mission:
104
+ Impossible Ghost Protocol","year":2011,"mpaa_rating":"PG-13","runtime":132,"critics_consensus":"Stylish,
105
+ fast-paced, and loaded with gripping set pieces, the fourth Mission: Impossible
106
+ is big-budget popcorn entertainment that really works.","release_dates":{"theater":"2011-12-21","dvd":"2012-04-17"},"ratings":{"critics_rating":"Certified
107
+ Fresh","critics_score":93,"audience_rating":"Upright","audience_score":85},"synopsis":"This
108
+ is not just another mission. The IMF is shut down when it''s implicated in
109
+ a global terrorist bombing plot. Ghost Protocol is initiated and Ethan Hunt
110
+ and his rogue new team must go undercover to clear their organization''s name.
111
+ No help, no contact, off the grid. You have never seen a mission grittier
112
+ and more intense than this. -- (C) Paramount","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/91/11169152_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/91/11169152_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/91/11169152_det.jpg","original":"http://content6.flixster.com/movie/11/16/91/11169152_ori.jpg"},"abridged_cast":[{"name":"Tom
113
+ Cruise","id":"162652763","characters":["Ethan Hunt"]},{"name":"Simon Pegg","id":"162684057","characters":["Benji","Benji
114
+ Dunn"]},{"name":"Jeremy Renner","id":"309973652","characters":["Brandt","William
115
+ Brandt"]},{"name":"Ving Rhames","id":"162693220","characters":["Luther Stickell"]},{"name":"Vladimir
116
+ Mashkov","id":"770683572","characters":["Anatoly Sidirov","Sidorov"]}],"alternate_ids":{"imdb":"1229238"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/770863873.json","alternate":"http://www.rottentomatoes.com/m/mission_impossible_ghost_protocol/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/770863873/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/770863873/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/770863873/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/770863873/similar.json"}}],"links":{"rel":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854.json","self":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/similar?limit=5"},"link_template":"http://api.rottentomatoes.com/api/public/v1.0/movies/155654854/similar?limit={num_results}"}
117
+
118
+ '
119
+ http_version:
120
+ recorded_at: Thu, 21 Feb 2013 18:11:07 GMT
121
+ recorded_with: VCR 2.4.0