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,359 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?apikey=<API_KEY>&country=us&page=1&page_limit=21
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:55 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=1293E4A79BE2ED6F351906E4F847B7E0.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
+ 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
+
77
+
78
+
79
+ {"total":22,"movies":[{"id":"771267253","title":"How to Survive a Plague","year":2012,"mpaa_rating":"Unrated","runtime":109,"critics_consensus":"Angry,
80
+ powerful, and stirring, How to Survive a Plague is a brilliantly constructed
81
+ documentary about the activists who pushed for action to combat the AIDS epidemic.","release_dates":{"theater":"2012-09-21","dvd":"2013-02-25"},"ratings":{"critics_rating":"Certified
82
+ Fresh","critics_score":100,"audience_rating":"Upright","audience_score":80},"synopsis":"How
83
+ to Survive a Plague is the story of two coalitions-ACT UP and TAG (Treatment
84
+ Action Group)-whose activism and innovation turned AIDS from a death sentence
85
+ into a manageable condition. Despite having no scientific training, these
86
+ self-made activists infiltrated the pharmaceutical industry and helped identify
87
+ promising new drugs, moving them from experimental trials to patients in record
88
+ time. With unfettered access to a treasure trove of never-before-seen archival
89
+ footage from the 1980s and ''90s, filmmaker David France puts the viewer smack
90
+ in the middle of the controversial actions, the heated meetings, the heartbreaking
91
+ failures, and the exultant breakthroughs of heroes in the making. -- (C) Official
92
+ Site","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/66/11166662_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/66/11166662_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/66/11166662_det.jpg","original":"http://content8.flixster.com/movie/11/16/66/11166662_ori.jpg"},"abridged_cast":[{"name":"Peter
93
+ Staley","id":"771415689"},{"name":"Garance Franke-Riuta","id":"771420775"},{"name":"Mark
94
+ Harrington","id":"771116450"},{"name":"Spencer Cox","id":"771420776"},{"name":"Larry
95
+ Kramer","id":"399395998"}],"alternate_ids":{"imdb":"2124803"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253.json","alternate":"http://www.rottentomatoes.com/m/how_to_survive_a_plague/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/similar.json"}},{"id":"771242746","title":"The
96
+ Eye of the Storm","year":2012,"mpaa_rating":"Unrated","runtime":114,"release_dates":{"theater":"2012-09-07","dvd":"2013-02-25"},"ratings":{"critics_rating":"Rotten","critics_score":55,"audience_rating":"Spilled","audience_score":50},"synopsis":"In
97
+ the Sydney suburb of Centennial Park, two nurses, a housekeeper and a solicitor
98
+ attend to Elizabeth Hunter as her expatriate son and daughter convene at her
99
+ deathbed. But in dying, as in living, Mrs Hunter remains a powerful force
100
+ on those who surround her. Based on the novel by Nobel Prize winner Patrick
101
+ White, The Eye of the Storm is a savage exploration of family relationships
102
+ - and the sharp undercurrents of love and hate, comedy and tragedy, which
103
+ define them. -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/64/11166489_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/64/11166489_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/64/11166489_det.jpg","original":"http://content7.flixster.com/movie/11/16/64/11166489_ori.jpg"},"abridged_cast":[{"name":"Geoffrey
104
+ Rush","id":"162659119","characters":["Basil","Basil Hunter"]},{"name":"Charlotte
105
+ Rampling","id":"162670589","characters":["Elizabeth","Elizabeth Hunter"]},{"name":"Judy
106
+ Davis","id":"162656849","characters":["Dorothy","Dorothy de Lascabanes"]},{"name":"Colin
107
+ Friels","id":"287408324","characters":["Athol Shreve"]},{"name":"Robyn Nevin","id":"770693111","characters":["Lal"]}],"alternate_ids":{"imdb":"1600207"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746.json","alternate":"http://www.rottentomatoes.com/m/the_eye_of_the_storm/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/similar.json"}},{"id":"771209435","title":"Silent
108
+ Souls","year":2011,"mpaa_rating":"Unrated","runtime":75,"release_dates":{"theater":"2011-09-16","dvd":"2013-02-25"},"ratings":{"critics_rating":"Certified
109
+ Fresh","critics_score":98,"audience_rating":"Upright","audience_score":75},"synopsis":"When
110
+ Miron''s beloved wife Tanya passes away, he asks his best friend Aist to help
111
+ him say goodbye to her according to the rituals of the Merja culture, an ancient
112
+ Finno-Ugric tribe from Lake Nero, a picturesque region in West-Central Russia.
113
+ Although the Merja people assimilated into Russians in the 17th century, their
114
+ myths and traditions live on in their descendants'' modern life. The two men
115
+ set out on a road trip thousands of miles across the boundless land, with
116
+ them, two small birds in a cage. Along the way, as is custom for the Merjans,
117
+ Miron shares intimate memories of his conjugal life. But as they reach the
118
+ banks of the sacred lake where they will forever part with the body, he realizes
119
+ he wasn''t the only one in love with Tanya... -- (C) Shadow Distribution","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/04/11160427_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/04/11160427_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/04/11160427_det.jpg","original":"http://content9.flixster.com/movie/11/16/04/11160427_ori.jpg"},"abridged_cast":[{"name":"Igor
120
+ Sergeyev","id":"771083112","characters":["Aist"]},{"name":"Yuri Tsurilo","id":"770697199","characters":["Miron"]},{"name":"Yuliya
121
+ Aug","id":"771005781","characters":["Tanya"]},{"name":"Ivan Tushin","id":"771381226","characters":["Aist
122
+ as a Child"]},{"name":"Viktor Sukhorukov","id":"359853719"}],"alternate_ids":{"imdb":"1693830"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435.json","alternate":"http://www.rottentomatoes.com/m/silent_souls/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/similar.json"}},{"id":"771267243","title":"Escape
123
+ Fire: The Fight to Rescue American Healthcare","year":2012,"mpaa_rating":"PG-13","runtime":98,"release_dates":{"theater":"2012-10-05","dvd":"2013-02-25"},"ratings":{"critics_rating":"Fresh","critics_score":81,"audience_rating":"Upright","audience_score":92},"synopsis":"Escape
124
+ Fire tackles one of the most pressing issues of our time: what can be done
125
+ to save our broken medical system? Award-winning filmmakers Matthew Heineman
126
+ and Susan Froemke follow dramatic human stories as well as leaders fighting
127
+ to transform healthcare at the highest levels of medicine, industry, government,
128
+ and even the US military. The film examines the powerful forces trying to
129
+ maintain the status quo in an industry designed for quick fixes rather than
130
+ prevention, for profit-driven care rather than patient-driven care. After
131
+ decades of resistance, a movement to bring innovative high-touch, low-cost
132
+ methods of prevention and healing into our high-tech, costly system is finally
133
+ gaining ground. Escape Fire is about finding a way out. It''s about saving
134
+ the health of a nation. -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/66/11166617_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/66/11166617_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/66/11166617_det.jpg","original":"http://content7.flixster.com/movie/11/16/66/11166617_ori.jpg"},"abridged_cast":[{"name":"Don
135
+ Berwick","id":"771422357"},{"name":"Shannon Brownlee","id":"771423014"},{"name":"Steve
136
+ Burd","id":"771422359"},{"name":"David Fridovich","id":"771423015"},{"name":"Wayne
137
+ Jonas","id":"771423016"}],"alternate_ids":{"imdb":"2093109"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243.json","alternate":"http://www.rottentomatoes.com/m/escape_fire_the_fight_to_rescue_american_healthcare/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/similar.json"}},{"id":"771321641","title":"Matru
138
+ Ki Bijlee Ka Mandola","year":2013,"mpaa_rating":"Unrated","runtime":147,"release_dates":{"theater":"2013-01-11","dvd":"2013-02-25"},"ratings":{"critics_rating":"Rotten","critics_score":33,"audience_rating":"Spilled","audience_score":48},"synopsis":"Set
139
+ in the rustic surroundings of a village in Haryana in India, \"Matru ki Bijlee
140
+ ka Mandola\" is a comedy-drama about Harry Mandola (PANKAJ KAPUR), a wealthy
141
+ industrialist who loves his drink, his daughter Bijlee (ANUSHKA SHARMA) and
142
+ the unusual bond they both share with Harry''s man friday, Matru (IMRAN KHAN).
143
+ Much to her father''s delight, Bijlee is all set to marry Baadal (ARYA BABBAR),
144
+ the son of a powerful politician Chaudhari Devi (SHABANA AZMI). This alliance
145
+ which is far from just being a simple union of two young people becomes the
146
+ seed for a story that brings twists and turns in the lives of Matru, Bijlee
147
+ and Mandola. (c) Fox International","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/85/11168573_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/85/11168573_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/85/11168573_det.jpg","original":"http://content7.flixster.com/movie/11/16/85/11168573_ori.jpg"},"abridged_cast":[{"name":"Imran
148
+ Khan","id":"770720479","characters":["Matru"]},{"name":"Anushka Sharma","id":"770805979","characters":["Bijlee
149
+ Mandola"]},{"name":"Pankaj Kapur","id":"770678918","characters":["Harry Mandola"]},{"name":"Shabana
150
+ Azmi","id":"341815838","characters":["Chaudhari Devi"]},{"name":"Arya Babbar","id":"770676620","characters":["Baadal"]}],"alternate_ids":{"imdb":"2106537"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641.json","alternate":"http://www.rottentomatoes.com/m/matru_ki_bijlee_ka_mandola/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/similar.json"}},{"id":"771267264","title":"Madrid,
151
+ 1987","year":2012,"mpaa_rating":"Unrated","runtime":104,"release_dates":{"theater":"2012-10-12","dvd":"2013-02-25"},"ratings":{"critics_rating":"Fresh","critics_score":86,"audience_rating":"Spilled","audience_score":50},"synopsis":"Madrid,
152
+ 1987 ...is a two-character story with a verbose discourse on writing, journalism,
153
+ careerism, aging and politics. Shot mostly within a very constricted space,
154
+ the story follows an older, celebrated journalist Miguel (Jose Sacristan)
155
+ who meets the beautiful and coy journalism-student Angela (Maria Valverde)
156
+ to give an interview - but becomes intent upon seducing her. They end up spending
157
+ time in the most unusual manner ...discussing literature, prose and career
158
+ trajectories ...gradually divulging little insights into their own selves
159
+ as we start to understand the old journalist''s cynicism and the young protege''s
160
+ intentions.","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/71/11167117_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/71/11167117_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/71/11167117_det.jpg","original":"http://content7.flixster.com/movie/11/16/71/11167117_ori.jpg"},"abridged_cast":[{"name":"Jose
161
+ Sacristan","id":"410885112"},{"name":"Maria Valverde","id":"763949211"},{"name":"Ramon
162
+ Fontsere","id":"770672986"},{"name":"Alberto Ferreiro","id":"770687098"},{"name":"Eduardo
163
+ Antuna","id":"770669870"}],"alternate_ids":{"imdb":"1760980"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264.json","alternate":"http://www.rottentomatoes.com/m/madrid_1987_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/similar.json"}},{"id":"771318293","title":"Border
164
+ Run (The Mule)","year":2012,"mpaa_rating":"R","runtime":96,"release_dates":{"theater":"2012-10-01","dvd":"2013-02-25"},"ratings":{"critics_score":-1,"audience_rating":"Spilled","audience_score":0},"synopsis":"","posters":{"thumbnail":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","profile":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","detailed":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","original":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"},"abridged_cast":[{"name":"Sharon
165
+ Stone","id":"162653066","characters":["Sofie Talbert"]},{"name":"Billy Zane","id":"162668093"},{"name":"Manolo
166
+ Cardona","id":"341817501"},{"name":"Miguel Rodarte","id":"770672249"},{"name":"Rosemberg
167
+ Salgado","id":"770808737"}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293.json","alternate":"http://www.rottentomatoes.com/m/border_run/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/similar.json"}},{"id":"771206753","title":"The
168
+ Master","year":2012,"mpaa_rating":"R","runtime":138,"critics_consensus":"Smart
169
+ and solidly engrossing, The Master extends Paul Thomas Anderson''s winning
170
+ streak of challenging films for serious audiences.","release_dates":{"theater":"2012-09-14","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
171
+ Fresh","critics_score":86,"audience_rating":"Upright","audience_score":62},"synopsis":"A
172
+ striking portrait of drifters and seekers in post World War II America, Paul
173
+ Thomas Anderson''s The Master unfolds the journey of a Naval veteran (Joaquin
174
+ Phoenix) who arrives home from war unsettled and uncertain of his future -
175
+ until he is tantalized by The Cause and its charismatic leader (Philip Seymour
176
+ Hoffman). -- (C) Weinstein","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/61/11166142_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/61/11166142_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/61/11166142_det.jpg","original":"http://content8.flixster.com/movie/11/16/61/11166142_ori.jpg"},"abridged_cast":[{"name":"Joaquin
177
+ Phoenix","id":"162655394","characters":["Freddie Quell","Freddie Sutton"]},{"name":"Philip
178
+ Seymour Hoffman","id":"162654287","characters":["Lancaster Dodd"]},{"name":"Amy
179
+ Adams","id":"162653029","characters":["Mary Sue Dodd","Peggy Dodd"]},{"name":"Laura
180
+ Dern","id":"162654251","characters":["Helen","Helen Sullivan"]},{"name":"Jesse
181
+ Plemons","id":"770696729","characters":["Val Dodd"]}],"alternate_ids":{"imdb":"1560747"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753.json","alternate":"http://www.rottentomatoes.com/m/the_master_2011/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/similar.json"}},{"id":"771257653","title":"Chasing
182
+ Mavericks","year":2012,"mpaa_rating":"PG","runtime":116,"critics_consensus":"It''s
183
+ sweet, gentle, and affably modest, but Chasing Mavericks is ultimately pulled
184
+ under by an unconvincing script and a puzzling lack of energy.","release_dates":{"theater":"2012-10-26","dvd":"2013-02-26"},"ratings":{"critics_rating":"Rotten","critics_score":33,"audience_rating":"Upright","audience_score":74},"synopsis":"Chasing
185
+ Mavericks is the inspirational true story of real life surfing phenom Jay
186
+ Moriarity (played by newcomer Jonny Weston). When 15 year old Jay discovers
187
+ that the mythic Mavericks surf break, one of the biggest waves on Earth, is
188
+ not only real, but exists just miles from his Santa Cruz home, he enlists
189
+ the help of local legend Frosty Hesson (played by Gerard Butler) to train
190
+ him to survive it. As Jay and Frosty embark on their quest to accomplish the
191
+ impossible, they form a unique friendship that transforms both their lives,
192
+ and their quest to tame Mavericks becomes about far more than surfing. Chasing
193
+ Mavericks was made with the help of some of the biggest names in the surfing
194
+ world, and features some of the most mind-blowing real wave footage ever captured
195
+ on film. -- (C) Official Site","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/82/11168294_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/82/11168294_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/82/11168294_det.jpg","original":"http://content8.flixster.com/movie/11/16/82/11168294_ori.jpg"},"abridged_cast":[{"name":"Jonny
196
+ Weston","id":"771403662","characters":["Jay Moriarty"]},{"name":"Gerard Butler","id":"162659102","characters":["Frosty
197
+ Hesson"]},{"name":"Elisabeth Shue","id":"162654719","characters":["Kristy
198
+ Moriarity","Kristy Moriarty"]},{"name":"Abigail Spencer","id":"770729279","characters":["Brenda
199
+ Hesson"]},{"name":"John Weston","id":"771187525","characters":["Jay Moriarty"]}],"alternate_ids":{"imdb":"1629757"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653.json","alternate":"http://www.rottentomatoes.com/m/chasing_mavericks/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/similar.json"}},{"id":"771243297","title":"This
200
+ Is Not a Film","year":2012,"mpaa_rating":"Unrated","runtime":75,"critics_consensus":"Through
201
+ simple means and filming, This is Not a Film presents a vital political statement
202
+ and a snapshot of life in Iran as enemy of the state.","release_dates":{"theater":"2012-02-29","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
203
+ Fresh","critics_score":99,"audience_rating":"Upright","audience_score":74},"synopsis":"This
204
+ clandestine documentary, shot partially on an iPhone and smuggled into France
205
+ in a cake for a last-minute submission to Cannes, depicts the day-to-day life
206
+ of acclaimed director Jafar Panahi (Offside, The Circle) during his house
207
+ arrest in his Tehran apartment. While appealing his sentence - six years in
208
+ prison and a 20 year ban from filmmaking - Panahi is seen talking to his family
209
+ and lawyer on the phone, discussing his plight with Mirtahmasb and reflecting
210
+ on the meaning of the art of filmmaking. -- (C) Palisades Tartan","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/37/11163759_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/37/11163759_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/37/11163759_det.jpg","original":"http://content9.flixster.com/movie/11/16/37/11163759_ori.jpg"},"abridged_cast":[{"name":"Jafar
211
+ Panahi","id":"326394927","characters":["Jafar Panahi"]},{"name":"Mojtaba Mirtahmasb","id":"771185163","characters":["Mojtaba
212
+ Mirtahmasb"]}],"alternate_ids":{"imdb":"1667905"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297.json","alternate":"http://www.rottentomatoes.com/m/this_is_not_a_film_2011/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/similar.json"}},{"id":"771306082","title":"Holy
213
+ Motors","year":2012,"mpaa_rating":"Unrated","runtime":115,"critics_consensus":"Mesmerizingly
214
+ strange and willfully perverse, Holy Motors offers an unforgettable visual
215
+ feast alongside a spellbinding -- albeit unapologetically challenging -- narrative.","release_dates":{"theater":"2012-10-17","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
216
+ Fresh","critics_score":90,"audience_rating":"Upright","audience_score":73},"synopsis":"From
217
+ dawn to dusk, a few hours in the life of Monsieur Oscar, a shadowy character
218
+ who journeys from one life to the next. He is, in turn, captain of industry,
219
+ assassin, beggar, monster, family man... He seems to be playing roles, plunging
220
+ headlong into each part - but where are the cameras? Monsieur Oscar is alone,
221
+ accompanied only by Celine, the slender blonde woman behind the wheel of the
222
+ vast engine that transports him through and around Paris. He''s like a conscientious
223
+ assassin moving from hit to hit. In pursuit of the beautiful gesture, the
224
+ mysterious driving force, the women and the ghosts of past lives. But where
225
+ is his true home, his family, his rest? -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/70/11167005_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/70/11167005_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/70/11167005_det.jpg","original":"http://content7.flixster.com/movie/11/16/70/11167005_ori.jpg"},"abridged_cast":[{"name":"Denis
226
+ Lavant","id":"162727099","characters":["L''accordeoniste","L''homme au foyer","L''OS
227
+ de Motion-Capture","La mendiante","Le banquier","Le mourant","Le pere","Le
228
+ tue","Le tueur","M. Merde","M. Oscar","Mr. Oscar"]},{"name":"Edith Scob","id":"410145712","characters":["Celine"]},{"name":"Kylie
229
+ Minogue","id":"224764583","characters":["Eva Grace","Eva/Jean","Jean"]},{"name":"Eva
230
+ Mendes","id":"162666504","characters":["Kay M"]},{"name":"Elise Lhomeau","id":"770911547","characters":["Elise","Lea"]}],"alternate_ids":{"imdb":"2076220"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082.json","alternate":"http://www.rottentomatoes.com/m/holy_motors/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/similar.json"}},{"id":"771252695","title":"The
231
+ Loneliest Planet","year":2012,"mpaa_rating":"Unrated","runtime":113,"critics_consensus":"The
232
+ source material that inspired The Loneliest Planet may be brief, but this
233
+ adaptation of a Tom Bissell short story compensates with studious, finely
234
+ detailed filmmaking, haunting visuals, and thought-provoking subtext.","release_dates":{"theater":"2012-10-26","dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":73,"audience_rating":"Spilled","audience_score":34},"synopsis":"Alex
235
+ and Nica are young, in love and engaged to be married. The summer before their
236
+ wedding, they are backpacking in the Caucasus Mountains in Georgia. The couple
237
+ hire a local guide to lead them on a camping trek, and the three set off into
238
+ a stunning wilderness, a landscape that is both overwhelmingly open and frighteningly
239
+ closed. Walking for hours, they trade anecdotes, play games to pass the time
240
+ of moving through space. And then, a momentary misstep, a gesture that takes
241
+ only two or three seconds, a gesture that''s over almost as soon as it begins.
242
+ But once it is done, it can''t be undone. Once it is done, it threatens to
243
+ undo everything the couple believed about each other and about themselves.
244
+ -- (C) IFC","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/71/11167103_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/71/11167103_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/71/11167103_det.jpg","original":"http://content9.flixster.com/movie/11/16/71/11167103_ori.jpg"},"abridged_cast":[{"name":"Gael
245
+ Garcia Bernal","id":"162684026","characters":["Alex"]},{"name":"Hani Furstenberg","id":"471157500","characters":["Nica"]},{"name":"Bidzina
246
+ Gujabidze","id":"771379472","characters":["Dato"]}],"alternate_ids":{"imdb":"1695405"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695.json","alternate":"http://www.rottentomatoes.com/m/the_loneliest_planet/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/similar.json"}},{"id":"771251479","title":"Chicken
247
+ with Plums","year":2012,"mpaa_rating":"PG-13","runtime":90,"release_dates":{"theater":"2012-08-17","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
248
+ Fresh","critics_score":78,"audience_rating":"Upright","audience_score":72},"synopsis":"Teheran,
249
+ 1958. Since his beloved violin was broken, Nasser Ali Khan, one of the most
250
+ renowned musicians of his day, has lost all taste for life. Finding no instrument
251
+ worthy of replacing it, he decides to confine himself to bed to await death.
252
+ As he hopes for its arrival, he plunges into deep reveries, with dreams as
253
+ melancholic as they are joyous, taking him back to his youth and even to a
254
+ conversation with Azrael, the Angel of Death, who reveals the future of his
255
+ children... As pieces of the puzzle gradually fit together, the poignant secret
256
+ of his life comes to light: a wonderful story of love that inspired his genius
257
+ and his music... -- (C) Sony","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/61/11166141_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/61/11166141_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/61/11166141_det.jpg","original":"http://content7.flixster.com/movie/11/16/61/11166141_ori.jpg"},"abridged_cast":[{"name":"Mathieu
258
+ Amalric","id":"326393387","characters":["Nasser-Ali"]},{"name":"Edouard Baer","id":"299734282","characters":["Azrael"]},{"name":"Maria
259
+ de Medeiros","id":"162694724","characters":["Faringuisse"]},{"name":"Golshifteh
260
+ Farahani","id":"410146034","characters":["Irane"]},{"name":"Eric Caravaca","id":"539851451","characters":["Abdi"]}],"alternate_ids":{"imdb":"1663321"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479.json","alternate":"http://www.rottentomatoes.com/m/chicken_with_plums/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/similar.json"}},{"id":"771253589","title":"A
261
+ Simple Life","year":2012,"mpaa_rating":"Unrated","runtime":118,"release_dates":{"theater":"2012-04-13","dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":92,"audience_rating":"Upright","audience_score":86},"synopsis":"Since
262
+ her teenage years, Chung Chun-Tao has worked as an amah - a servant - for
263
+ the Leung family. Known as Ah Tao, she witnessed every aspect of the family''s
264
+ life. Now, after 60 years of service, she is looking after Roger, who works
265
+ in the film industry and is the only member of the family still resident in
266
+ Hong Kong. One day Roger comes home from work to find that Ah Tao has suffered
267
+ a stroke. He rushes her to hospital, where she announces that she wants to
268
+ quit her job and move into anursing home. Roger researches the possibilities
269
+ and finds her a room in an establishment run by an old friend. Ah Tao moves
270
+ in and begins acquainting herself with a new ''family'': the brisk but fundamentally
271
+ kindly supervisor Ms Choi and a motley crew of elderly residents Giving ever
272
+ more time and attention to Ah Tao''s needs and pleasures, Roger comes to realise
273
+ how much she means to him. -- (C) China Lion","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/40/11164015_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/40/11164015_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/40/11164015_det.jpg","original":"http://content9.flixster.com/movie/11/16/40/11164015_ori.jpg"},"abridged_cast":[{"name":"Andy
274
+ Lau","id":"162659309"},{"name":"Deannie Yip","id":"625687220"},{"name":"Sui-man
275
+ Chim","id":"770678707"},{"name":"Raymond Chow","id":"282429309"},{"name":"Paul
276
+ Chun","id":"625693248"}],"alternate_ids":{"imdb":"2008006"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589.json","alternate":"http://www.rottentomatoes.com/m/a_simple_life_2011/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/similar.json"}},{"id":"771206327","title":"Over
277
+ Your Cities Grass Will Grow","year":2011,"mpaa_rating":"Unrated","runtime":105,"release_dates":{"theater":"2011-08-10","dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":79,"audience_rating":"Spilled","audience_score":59},"synopsis":"Sophie
278
+ Fiennes records Anselm Kiefer, as the 65-year-old world-renowned artist creates
279
+ a spectacular architectonic landscape. \"In 1993 (Kiefer) left his native
280
+ Germany and settled in Barjac in France, where he bought a derelict silk factory,
281
+ transforming it into an extraordinary artistic centre... at once the place
282
+ where his paintings and sculptures are housed and displayed, and a colossal,
283
+ evolving architectural artwork in itself. Fiennes begins by roaming through
284
+ the tunnels and corridors of his studio-network: huge, disorienting shapes
285
+ and forms loom, composed of earth and mud. There are giant, organic pillars,
286
+ like stalagmites or termite mounds, a visual or conceptual rhyme to the towers
287
+ built outside... Fiennes''s emphases are almost abstract: color, light, texture,
288
+ form - and to these, she adds sound, using the music of Jorg Widmann and Gyorgy
289
+ Ligeti. Anselm''s studio is a place where real, hard work is going on: smelting,
290
+ sawing and hammering... His artistry looks as if it could be taking place
291
+ centuries ago, and yet it feels very modern... A deeply serious meditation
292
+ on artistic practice and expression.\" - Peter Bradshaw, The Guardian (UK)
293
+ --(C) Alive Mind","posters":{"thumbnail":"http://content6.flixster.com/movie/11/15/86/11158652_mob.jpg","profile":"http://content6.flixster.com/movie/11/15/86/11158652_pro.jpg","detailed":"http://content6.flixster.com/movie/11/15/86/11158652_det.jpg","original":"http://content6.flixster.com/movie/11/15/86/11158652_ori.jpg"},"abridged_cast":[{"name":"Klaus
294
+ Dermutz","id":"771377097","characters":["Narrator"]},{"name":"Anselm Kiefer","id":"770911607","characters":["Anselm
295
+ Kiefer"]}],"alternate_ids":{"imdb":"1414368"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327.json","alternate":"http://www.rottentomatoes.com/m/over_your_cities_grass_will_grow/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/similar.json"}},{"id":"771303983","title":"Fast
296
+ Girls","year":2012,"mpaa_rating":"Unrated","runtime":91,"release_dates":{"dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":82,"audience_score":63},"synopsis":"The
297
+ film, starring a trio of Britain''s hottest young talent - LENORA CRICHLOW
298
+ (Being Human), LILY JAMES (Clash of the Titans 2) and BRADLEY JAMES (Merlin)
299
+ - tracks the rollercoaster journey of a British female sprint relay team and
300
+ is set to be the feel-good film of the summer.","posters":{"thumbnail":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","profile":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","detailed":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","original":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"},"abridged_cast":[{"name":"Lily
301
+ James","id":"771402472"},{"name":"Bradley James","id":"770852156"},{"name":"Rupert
302
+ Graves","id":"162694911"},{"name":"Lenora Crichlow","id":"404479141"},{"name":"Noel
303
+ Clarke","id":"364640371"}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983.json","alternate":"http://www.rottentomatoes.com/m/fast_girls_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/similar.json"}},{"id":"771270461","title":"Girls
304
+ Against Boys","year":2013,"mpaa_rating":"R","runtime":87,"release_dates":{"theater":"2013-02-01","dvd":"2013-02-26"},"ratings":{"critics_rating":"Rotten","critics_score":13,"audience_rating":"Upright","audience_score":61},"synopsis":"When
305
+ Shae (Danielle Panabaker), a naive college student, is tormented by several
306
+ men in a matter of days, she reaches her breaking point, and is drawn into
307
+ coworker Lu''s (Nicole LaLiberte) twisted plan for revenge. Together, the
308
+ two embark on a gruesome killing spree, terrorizing and brutally murdering
309
+ not just their attackers, but any man who gets in their way. However, after
310
+ a wild weekend of retaliation, the friendship between the girls shifts into
311
+ a dangerous obsession, and their perverse game becomes a desperate struggle
312
+ for Shae to maintain control against Lu''s deadly and seductive influence.
313
+ (c) Anchor Bay","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/83/11168304_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/83/11168304_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/83/11168304_det.jpg","original":"http://content6.flixster.com/movie/11/16/83/11168304_ori.jpg"},"abridged_cast":[{"name":"Danielle
314
+ Panabaker","id":"162652948","characters":["Shae"]},{"name":"Nicole LaLiberte","id":"771078861","characters":["Lu"]},{"name":"Liam
315
+ Aiken","id":"162669078","characters":["Tyler"]},{"name":"Michael Stahl-David","id":"770696918","characters":["Simon"]},{"name":"Andrew
316
+ Howard","id":"770688393","characters":["Terry"]}],"alternate_ids":{"imdb":"2036376"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270461.json","alternate":"http://www.rottentomatoes.com/m/girls_against_boys/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270461/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270461/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270461/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270461/similar.json"}},{"id":"771324206","title":"Company
317
+ of Heroes","year":2013,"mpaa_rating":"Unrated","runtime":"","release_dates":{"dvd":"2013-02-26"},"ratings":{"critics_score":-1,"audience_score":81},"synopsis":"American
318
+ soldiers lost behind enemy lines during the WWII make a horrific discovery:
319
+ Hitler has a super bomb in development. Against all odds, they set out to
320
+ find the scientist in charge of the program who is looking to defect.","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/93/11169365_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/93/11169365_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/93/11169365_det.jpg","original":"http://content7.flixster.com/movie/11/16/93/11169365_ori.jpg"},"abridged_cast":[{"name":"Dimitri
321
+ Diatchenko","id":"770790568"},{"name":"Vinnie Jones","id":"162707683"},{"name":"Neal
322
+ McDonough","id":"326391936"},{"name":"Tom Sizemore","id":"162695570"},{"name":"Jurgen
323
+ Prochnow","id":"162693957"}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324206.json","alternate":"http://www.rottentomatoes.com/m/company_of_heroes_2013/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324206/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324206/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324206/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324206/similar.json"}},{"id":"771258206","title":"Crawl","year":2011,"mpaa_rating":"Unrated","runtime":80,"release_dates":{"dvd":"2013-02-26"},"ratings":{"critics_score":-1,"audience_score":72},"synopsis":"A
324
+ seedy bar-owner hires a mysterious Croatian to murder an acquaintance over
325
+ an unpaid debt. The crime is carried out, but a planned double-crossing backfires
326
+ and an innocent waitress suddenly becomes involved. Now a hostage in her own
327
+ home, the young woman is driven to desperate measures for survival. A suspenseful,
328
+ yet darkly humorous chain of events builds to a blood-curdling and unforgettable
329
+ climax.","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/53/11165386_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/53/11165386_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/53/11165386_det.jpg","original":"http://content8.flixster.com/movie/11/16/53/11165386_ori.jpg"},"abridged_cast":[{"name":"George
330
+ Shevtsov","id":"162734641","characters":["The Killer"]},{"name":"Georgina
331
+ Haig","id":"771080255","characters":["Marilyn Burns"]},{"name":"George Shevtson","id":"771435114","characters":["Slim
332
+ Walding"]},{"name":"Lynda Stoner","id":"770725244"},{"name":"Andy Barclay","id":"771385740"}],"alternate_ids":{"imdb":"1848832"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771258206.json","alternate":"http://www.rottentomatoes.com/m/crawl/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771258206/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771258206/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771258206/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771258206/similar.json"}},{"id":"771303911","title":"Freaky
333
+ Deaky","year":2012,"mpaa_rating":"R","runtime":93,"release_dates":{"dvd":"2013-02-26"},"ratings":{"critics_score":-1,"audience_score":93},"synopsis":"Based
334
+ on Elmore Leonard''s novel, a Detroit sex crimes unit investigation takes
335
+ a series of strange turns in this funny, sexy homage to 70''s filmmaking.","posters":{"thumbnail":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","profile":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","detailed":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","original":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"},"abridged_cast":[{"name":"Billy
336
+ Burke","id":"341818117","characters":["Chris Mankowski"]},{"name":"Crispin
337
+ Glover","id":"371357765","characters":["Woody Ricks"]},{"name":"Michael Jai
338
+ White","id":"162699088","characters":["Donnell","Donnell Lewis"]},{"name":"Andy
339
+ Dick","id":"351525208"},{"name":"Christian Slater","id":"162652316","characters":["Skip
340
+ Gibbs"]}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303911.json","alternate":"http://www.rottentomatoes.com/m/freaky_deaky/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303911/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303911/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303911/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303911/similar.json"}},{"id":"771254644","title":"The
341
+ Gerber Syndrome","year":2011,"mpaa_rating":"Unrated","runtime":88,"release_dates":{"dvd":"2013-02-26"},"ratings":{"critics_score":-1,"audience_score":80},"synopsis":"A
342
+ kiss. A handshake. A simple hug. We all know how easy it is to get infected
343
+ by a virus. But this time its not just any virus. It''s the Gerber syndrome,
344
+ a new pathology that doesnt look like a normal flu. A TV crew is making a
345
+ documentary about this new pathology. It''s the Gerber syndrome, a highly
346
+ contagious virus with devastating effects. Through the testimony of three
347
+ people that are directly involved with the disease (a doctor, an infected
348
+ girl, a young security agent) the truth is revelead, and it is way more terrifing
349
+ than what the authorities want us to believe.Because the Gerber syndrome is
350
+ already between us. And it''s very, contagious..","posters":{"thumbnail":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","profile":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","detailed":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","original":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"},"abridged_cast":[{"name":"Ettore
351
+ Nicoletti","id":"771381898"},{"name":"Pia Lanciotti","id":"771376106"},{"name":"Anna
352
+ Nevander","id":"770863903"},{"name":"Valentina Bartolo","id":"771381899"},{"name":"Elisabetta
353
+ Fischer","id":"771381900"}],"alternate_ids":{"imdb":"1820701"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254644.json","alternate":"http://www.rottentomatoes.com/m/the_gerber_syndrome/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254644/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254644/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254644/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254644/similar.json"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?page_limit=21&country=us&page=1","next":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?page_limit=21&country=us&page=2","alternate":"http://www.rottentomatoes.com/dvd/upcoming.json"},"link_template":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?page_limit={results-per-page}&page={page-number}&country={country-code}"}
354
+
355
+
356
+ '
357
+ http_version:
358
+ recorded_at: Wed, 20 Feb 2013 15:31:56 GMT
359
+ recorded_with: VCR 2.4.0