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,427 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/current_releases.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:53 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=AD6A9DCAE90A7A8430C59E7006603C90.localhost; Path=/
35
+ - ServerID=1335; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1d-15.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":50,"movies":[{"id":"771190127","title":"Total Recall","year":2012,"mpaa_rating":"PG-13","runtime":121,"critics_consensus":"While
80
+ it boasts some impressive action sequences, Total Recall lacks the intricate
81
+ plotting, wry humor, and fleshed out characters that made the original a sci-fi
82
+ classic.","release_dates":{"theater":"2012-08-03","dvd":"2012-12-18"},"ratings":{"critics_rating":"Rotten","critics_score":31,"audience_rating":"Spilled","audience_score":46},"synopsis":"Welcome
83
+ to Rekall, the company that can turn your dreams into real memories. For a
84
+ factory worker named Douglas Quaid (Colin Farrell), even though he''s got
85
+ a beautiful wife (Kate Beckinsale) who he loves, the mind-trip sounds like
86
+ the perfect vacation from his frustrating life - real memories of life as
87
+ a super-spy might be just what he needs. But when the procedure goes horribly
88
+ wrong, Quaid becomes a hunted man. Finding himself on the run from the police
89
+ - controlled by Chancellor Cohaagen (Bryan Cranston), the leader of the free
90
+ world - Quaid teams up with a rebel fighter (Jessica Biel) to find the head
91
+ of the underground resistance (Bill Nighy) and stop Cohaagen. -- (C) Sony","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/79/11167963_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/79/11167963_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/79/11167963_det.jpg","original":"http://content9.flixster.com/movie/11/16/79/11167963_ori.jpg"},"abridged_cast":[{"name":"Colin
92
+ Farrell","id":"162665297","characters":["Douglas Quaid","Douglas Quaid/Hauser"]},{"name":"Kate
93
+ Beckinsale","id":"162659163","characters":["Lori Quaid"]},{"name":"Jessica
94
+ Biel","id":"162652974","characters":["Melina"]},{"name":"Bryan Cranston","id":"326392501","characters":["Cohaagen","Vilos
95
+ Cohaagen"]},{"name":"Bokeem Woodbine","id":"162724903","characters":["Harry"]}],"alternate_ids":{"imdb":"1386703"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771190127.json","alternate":"http://www.rottentomatoes.com/m/total_recall_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771190127/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771190127/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771190127/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771190127/similar.json"}},{"id":"771308226","title":"Pitch
96
+ Perfect","year":2012,"mpaa_rating":"PG-13","runtime":112,"critics_consensus":"Pitch
97
+ Perfect''s plot is formulaic, but the performances are excellent and the musical
98
+ numbers are toe-tapping as well.","release_dates":{"theater":"2012-10-05","dvd":"2012-12-18"},"ratings":{"critics_rating":"Certified
99
+ Fresh","critics_score":81,"audience_rating":"Upright","audience_score":83},"synopsis":"Beca
100
+ (Anna Kendrick) is that girl who''d rather listen to what''s coming out of
101
+ her headphones than what''s coming out of you. Arriving at her new college,
102
+ she finds herself not right for any clique but somehow is muscled into one
103
+ that she never would have picked on her own: alongside mean girls, sweet girls
104
+ and weird girls whose only thing in common is how good they sound when they
105
+ sing together, in the new out-loud comedy Pitch Perfect. When Beca takes this
106
+ acoustic singing group out of their world of traditional arrangements and
107
+ perfect harmonies into all-new mash-ups, they fight to climb their way to
108
+ the top of the cutthroat world of college a cappella. This could wind up either
109
+ the coolest thing they''ll ever do or the most insane, and it will probably
110
+ be a little of both. -- (C) Universal","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/75/11167512_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/75/11167512_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/75/11167512_det.jpg","original":"http://content6.flixster.com/movie/11/16/75/11167512_ori.jpg"},"abridged_cast":[{"name":"Anna
111
+ Kendrick","id":"528367112","characters":["Beca"]},{"name":"Skylar Astin","id":"770797712","characters":["Jesse"]},{"name":"Ben
112
+ Platt","id":"771422025","characters":["Benji"]},{"name":"Brittany Snow","id":"162652474","characters":["Chloe"]},{"name":"Anna
113
+ Camp","id":"770908299","characters":["Aubrey"]}],"alternate_ids":{"imdb":"1981677"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771308226.json","alternate":"http://www.rottentomatoes.com/m/pitch_perfect/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771308226/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771308226/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771308226/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771308226/similar.json"}},{"id":"771251499","title":"Diary
114
+ of a Wimpy Kid: Dog Days","year":2012,"mpaa_rating":"PG","runtime":94,"critics_consensus":"Overly
115
+ familiar and a bit too reliant on slapstick, the sitcom-like Dog Days fails
116
+ to improve upon previous installments and will likely appeal to few outside
117
+ its target audience.","release_dates":{"theater":"2012-08-03","dvd":"2012-12-18"},"ratings":{"critics_rating":"Rotten","critics_score":50,"audience_rating":"Upright","audience_score":66},"synopsis":"During
118
+ his summer vacation, \"Wimpy Kid\" Greg Heffley, the hero of the phenomenally
119
+ successful book series, hatches a plan to pretend he has a job at a ritzy
120
+ country club - which fails to keep him away from the season''s dog days, including
121
+ embarrassing mishaps at a public pool and a camping trip that goes horribly
122
+ wrong. -- (C) 20th Century Fox","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/79/11167902_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/79/11167902_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/79/11167902_det.jpg","original":"http://content8.flixster.com/movie/11/16/79/11167902_ori.jpg"},"abridged_cast":[{"name":"Zachary
123
+ Gordon","id":"770802329","characters":["Greg Heffley"]},{"name":"Devon Bostick","id":"770688857","characters":["Rodrick
124
+ Heffley"]},{"name":"Rachael Harris","id":"770781992","characters":["Susan
125
+ Heffley"]},{"name":"Robert Capron","id":"770912037","characters":["Rowley
126
+ Jefferson"]},{"name":"Steve Zahn","id":"162652352","characters":["Frank Heffley"]}],"alternate_ids":{"imdb":"2023453"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251499.json","alternate":"http://www.rottentomatoes.com/m/diary_of_a_wimpy_kid_dog_days/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251499/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251499/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251499/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251499/similar.json"}},{"id":"771267283","title":"Sleepwalk
127
+ With Me","year":2012,"mpaa_rating":"PG-13","runtime":90,"critics_consensus":"Laugh-out-loud
128
+ funny and endearingly messy, Sleepwalk with Me overcomes its tonal inconsistencies
129
+ to deliver a sweetly melancholic, amiably reassuring indie crowd-pleaser.","release_dates":{"theater":"2012-08-24","dvd":"2012-12-18"},"ratings":{"critics_rating":"Certified
130
+ Fresh","critics_score":87,"audience_rating":"Upright","audience_score":74},"synopsis":"\"I''m
131
+ going to tell you a story, and it''s true....I always have to tell people
132
+ that.\" So asserts comedian-turned-playwright-turned-filmmaker Mike Birbiglia
133
+ directly to the viewer at the outset of his autobiographically inspired, fictional
134
+ feature debut. Birbiglia wears his incisive wit on his sleeve while portraying
135
+ a cinematic surrogate. We are thrust into the tale of a burgeoning stand-up
136
+ comedian struggling with the stress of a stalled career, a stale relationship
137
+ threatening to race out of his control, and the wild spurts of severe sleepwalking
138
+ he is desperate to ignore. Based on the successful one-man show, Sleepwalk
139
+ With Me engages in the kind of passionate and personal storytelling that transfigures
140
+ intimate anguish into comic art. -- (C) IFC","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/58/11165803_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/58/11165803_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/58/11165803_det.jpg","original":"http://content9.flixster.com/movie/11/16/58/11165803_ori.jpg"},"abridged_cast":[{"name":"Mike
141
+ Birbiglia","id":"770762134","characters":["Matt","Matt Pandamiglio"]},{"name":"Lauren
142
+ Ambrose","id":"364612974","characters":["Abby"]},{"name":"James Rebhorn","id":"534309564","characters":["Frank","Frank
143
+ Pandamiglio"]},{"name":"Carol Kane","id":"162652477","characters":["Linda","Linda
144
+ Pandamiglio"]},{"name":"Cristin Milioti","id":"770852343","characters":["Janet"]}],"alternate_ids":{"imdb":"2077851"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267283.json","alternate":"http://www.rottentomatoes.com/m/sleepwalk_with_me_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267283/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267283/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267283/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267283/similar.json"}},{"id":"771244546","title":"10
145
+ Years","year":2012,"mpaa_rating":"PG-13","runtime":90,"release_dates":{"theater":"2012-09-14","dvd":"2012-12-18"},"ratings":{"critics_rating":"Rotten","critics_score":59,"audience_rating":"Spilled","audience_score":42},"synopsis":"In
146
+ this ensemble comedy, 10 Years follows a group of friends on the night of
147
+ their high school reunion who, a decade later, still haven''t quite grown
148
+ up. Channing Tatum plays Jake, who is deeply in love with his girlfriend (Jenna
149
+ Dewan-Tatum) and ready to propose-until he runs into his high school flame
150
+ (Rosario Dawson) for the first time in years. Jake''s friend Cully (Chris
151
+ Pratt) married his cheerleader girlfriend (Ari Graynor), and has been looking
152
+ forward to the reunion so he can finally apologize to all the classmates he
153
+ bullied in high school. However, after a few too many drinks, the jock-turned-family
154
+ man ends up reverting back to his old ways instead. Meanwhile, longtime rivals
155
+ Marty (Justin Long) and A.J (Max Minghella) spend the night picking up right
156
+ where they left off, vying to impress the hottest girl in class (Lynn Collins).
157
+ The famous one of the group, Reeves (Oscar Isaac) is now a rock star, but
158
+ is still too shy to talk to his high school crush (Kate Mara.)-- (C) Official","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/63/11166336_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/63/11166336_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/63/11166336_det.jpg","original":"http://content6.flixster.com/movie/11/16/63/11166336_ori.jpg"},"abridged_cast":[{"name":"Channing
159
+ Tatum","id":"162661835","characters":["Jake"]},{"name":"Jenna Dewan-Tatum","id":"771384775","characters":["Jess"]},{"name":"Justin
160
+ Long","id":"162652679","characters":["Marty"]},{"name":"Max Minghella","id":"162652282","characters":["A.J.","AJ"]},{"name":"Kate
161
+ Mara","id":"414200709","characters":["Elise"]}],"alternate_ids":{"imdb":"1715873"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771244546.json","alternate":"http://www.rottentomatoes.com/m/10_years/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771244546/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771244546/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771244546/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771244546/similar.json"}},{"id":"771235030","title":"Resident
162
+ Evil: Retribution","year":2012,"mpaa_rating":"R","runtime":95,"critics_consensus":"Another
163
+ predictable entry in the Resident Evil franchise that seems to get more cynical
164
+ and lazy with each film.","release_dates":{"theater":"2012-09-14","dvd":"2012-12-21"},"ratings":{"critics_rating":"Rotten","critics_score":30,"audience_rating":"Spilled","audience_score":51},"synopsis":"The
165
+ Umbrella Corporation''s deadly T-virus continues to ravage the Earth, transforming
166
+ the global population into legions of the flesh eating Undead. The human race''s
167
+ last and only hope, Alice (Milla Jovovich), awakens in the heart of Umbrella''s
168
+ most clandestine operations facility and unveils more of her mysterious past
169
+ as she delves further into the complex. Without a safe haven, Alice continues
170
+ to hunt those responsible for the outbreak; a chase that takes her from Tokyo
171
+ to New York, Washington, D.C. and Moscow, culminating in a mind-blowing revelation
172
+ that will force her to rethink everything that she once thought to be true.
173
+ Aided by newfound allies and familiar friends, Alice must fight to survive
174
+ long enough to escape a hostile world on the brink of oblivion. The countdown
175
+ has begun. -- (C) Sony","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/80/11168062_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/80/11168062_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/80/11168062_det.jpg","original":"http://content8.flixster.com/movie/11/16/80/11168062_ori.jpg"},"abridged_cast":[{"name":"Milla
176
+ Jovovich","id":"162664693","characters":["Alice"]},{"name":"Sienna Guillory","id":"162686458","characters":["Jill
177
+ Valentine"]},{"name":"Colin Salmon","id":"417267409","characters":["One"]},{"name":"Michelle
178
+ Rodriguez","id":"162668831","characters":["Rain"]},{"name":"Kevin Durand","id":"684288210","characters":["Barry
179
+ Burton"]}],"alternate_ids":{"imdb":"1855325"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771235030.json","alternate":"http://www.rottentomatoes.com/m/resident_evil_retribution/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771235030/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771235030/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771235030/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771235030/similar.json"}},{"id":"771205854","title":"Premium
180
+ Rush","year":2012,"mpaa_rating":"PG-13","runtime":90,"critics_consensus":"It''s
181
+ built out of familiar parts, but no matter how formulaic Premium Rush''s storyline
182
+ might seem, it''s elevated by high-octane action and enjoyable performances.","release_dates":{"theater":"2012-08-24","dvd":"2012-12-21"},"ratings":{"critics_rating":"Certified
183
+ Fresh","critics_score":76,"audience_rating":"Upright","audience_score":62},"synopsis":"Dodging
184
+ speeding cars, crazed cabbies, open doors, and eight million cranky pedestrians
185
+ is all in a day''s work for Wilee (Joseph Gordon-Levitt), the best of New
186
+ York''s agile and aggressive bicycle messengers. It takes a special breed
187
+ to ride the fixie - super lightweight, single-gear bikes with no brakes and
188
+ riders who are equal part skilled cyclists and suicidal nutcases who risk
189
+ becoming a smear on the pavement every time they head into traffic. But a
190
+ guy who''s used to putting his life on the line is about to get more than
191
+ even he is used to when a routine delivery turns into a life or death chase
192
+ through the streets of Manhattan. When Wilee picks up his last envelope of
193
+ the day on a premium rush run, he discovers this package is different. This
194
+ time, someone is actually trying to kill him. -- (C) Sony","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/80/11168079_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/80/11168079_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/80/11168079_det.jpg","original":"http://content9.flixster.com/movie/11/16/80/11168079_ori.jpg"},"abridged_cast":[{"name":"Joseph
195
+ Gordon-Levitt","id":"162666960","characters":["Wilee"]},{"name":"Michael Shannon","id":"368451324","characters":["Bobby
196
+ Monday"]},{"name":"Dania Ramirez","id":"729680355","characters":["Vanessa"]},{"name":"Jamie
197
+ Chung","id":"770694653","characters":["Nima"]},{"name":"Lauren Ashley Carter","id":"770910792","characters":["Phoebe"]}],"alternate_ids":{"imdb":"1547234"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205854.json","alternate":"http://www.rottentomatoes.com/m/premium_rush/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205854/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205854/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205854/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205854/similar.json"}},{"id":"771210952","title":"Killer
198
+ Joe","year":2012,"mpaa_rating":"R","runtime":102,"critics_consensus":"Violent,
199
+ darkly comic, and full of strong performances, Killer Joe proves William Friedkin
200
+ hasn''t lost his touch, even if the plot may be too lurid for some.","release_dates":{"theater":"2012-07-27","dvd":"2012-12-21"},"ratings":{"critics_rating":"Certified
201
+ Fresh","critics_score":77,"audience_rating":"Upright","audience_score":63},"synopsis":"When
202
+ 22 year-old drug dealer Chris (Hirsch) has his stash of drugs stolen from
203
+ him by his mother, he has to come up with six-thousand dollars quick, or he''s
204
+ dead. Desperate, he goes to the trailer-park to see his father, Ansel (Hayden
205
+ Church), and he lays out the plan. Chris''s mother, who everyone hates, has
206
+ a life insurance policy that would clear up his debt and make them all rich.
207
+ The problem is that Chris'' mother is very much alive. Enter Detective \"Killer\"
208
+ Joe Cooper, a hired hit man with the manners of a Southern gentleman, who
209
+ will do the job - for an upfront fee, that Chris and Ansel can''t pay. Just
210
+ as Joe is about to leave, he spots Dottie (Temple), Chris'' innocent younger
211
+ sister. Joe makes Chris an offer, he''ll keep Dottie as sexual collateral
212
+ until the money is collected and his fee can be paid. -- (C) Voltage Pictures","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/59/11165993_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/59/11165993_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/59/11165993_det.jpg","original":"http://content7.flixster.com/movie/11/16/59/11165993_ori.jpg"},"abridged_cast":[{"name":"Matthew
213
+ McConaughey","id":"162652350","characters":["\"Killer\" Joe Cooper","Joe Cooper"]},{"name":"Emile
214
+ Hirsch","id":"162652589","characters":["Chris","Chris Smith"]},{"name":"Juno
215
+ Temple","id":"770696465","characters":["Dottie","Dottie Smith"]},{"name":"Thomas
216
+ Haden Church","id":"162683650","characters":["Ansel","Ansel Smith"]},{"name":"Gina
217
+ Gershon","id":"162687242","characters":["Sharla","Sharla Smith"]}],"alternate_ids":{"imdb":"1726669"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771210952.json","alternate":"http://www.rottentomatoes.com/m/killer_joe/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771210952/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771210952/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771210952/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771210952/similar.json"}},{"id":"771266208","title":"Arbitrage","year":2012,"mpaa_rating":"R","runtime":107,"critics_consensus":"Arbitrage
218
+ is both a tense thriller and a penetrating character study, elevated by the
219
+ strength of a typically assured performance from Richard Gere.","release_dates":{"theater":"2012-09-14","dvd":"2012-12-21"},"ratings":{"critics_rating":"Certified
220
+ Fresh","critics_score":85,"audience_rating":"Upright","audience_score":65},"synopsis":"When
221
+ we first meet New York hedge-fund magnate Robert Miller (Richard Gere) on
222
+ the eve of his 60th birthday, he appears the very portrait of success in American
223
+ business and family life. But behind the gilded walls of his mansion, Miller
224
+ is in over his head, desperately trying to complete the sale of his trading
225
+ empire to a major bank before the depths of his fraud are revealed. Struggling
226
+ to conceal his duplicity from loyal wife Ellen (Susan Sarandon) and brilliant
227
+ daughter and heir-apparent Brooke (Brit Marling), Miller''s also balancing
228
+ an affair with French art-dealer Julie Cote (Laetetia Casta). Just as he''s
229
+ about to unload his troubled empire, an unexpected bloody error forces him
230
+ to juggle family, business, and crime with the aid of Jimmy Grant (Nate Parker),
231
+ a face from Miller''s past. -- (C) Official Site","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/57/11165790_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/57/11165790_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/57/11165790_det.jpg","original":"http://content8.flixster.com/movie/11/16/57/11165790_ori.jpg"},"abridged_cast":[{"name":"Richard
232
+ Gere","id":"162655185","characters":["Robert Miller"]},{"name":"Susan Sarandon","id":"162654579","characters":["Ellen
233
+ Miller"]},{"name":"Tim Roth","id":"162652856","characters":["Detective Michael
234
+ Bryer"]},{"name":"Brit Marling","id":"770798848","characters":["Brooke Miller"]},{"name":"Laetitia
235
+ Casta","id":"364662018","characters":["Julie Cote"]}],"alternate_ids":{"imdb":"1764183"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266208.json","alternate":"http://www.rottentomatoes.com/m/arbitrage/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266208/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266208/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266208/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266208/similar.json"}},{"id":"771268582","title":"Trouble
236
+ with the Curve","year":2012,"mpaa_rating":"PG-13","runtime":110,"critics_consensus":"Though
237
+ predictable and somewhat dramatically underwhelming, Trouble with the Curve
238
+ benefits from Clint Eastwood''s grizzled charisma and his easy chemistry with
239
+ a charming Amy Adams.","release_dates":{"theater":"2012-09-21","dvd":"2012-12-21"},"ratings":{"critics_rating":"Rotten","critics_score":51,"audience_rating":"Upright","audience_score":66},"synopsis":"Gus
240
+ Lobel (Clint Eastwood) has been one of the best scouts in baseball for decades,
241
+ but, despite his efforts to hide it, age is starting to catch up with him.
242
+ Nevertheless, Gus-who can tell a pitch just by the crack of the bat-refuses
243
+ to be benched for what may be the final innings of his career. He may not
244
+ have a choice. The front office of the Atlanta Braves is starting to question
245
+ his judgment, especially with the country''s hottest batting phenom on deck
246
+ for the draft. The one person who might be able to help is also the one person
247
+ Gus would never ask: his daughter, Mickey (Amy Adams), an associate at a high-powered
248
+ Atlanta law firm whose drive and ambition has put her on the fast track to
249
+ becoming partner. Against her better judgment, and over Gus''s objections,
250
+ Mickey joins him on his latest scouting trip to North Carolina, jeopardizing
251
+ her own career to save his. -- (C) Warner Bros.","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/74/11167431_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/74/11167431_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/74/11167431_det.jpg","original":"http://content9.flixster.com/movie/11/16/74/11167431_ori.jpg"},"abridged_cast":[{"name":"Clint
252
+ Eastwood","id":"162659169","characters":["Gus","Gus Lobel"]},{"name":"Amy
253
+ Adams","id":"162653029","characters":["Mickey"]},{"name":"Justin Timberlake","id":"246212645","characters":["Johnny","Johnny
254
+ Flanagan"]},{"name":"John Goodman","id":"162655706","characters":["Pete Klein"]},{"name":"Robert
255
+ Patrick","id":"162655397","characters":["Vince"]}],"alternate_ids":{"imdb":"2083383"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771268582.json","alternate":"http://www.rottentomatoes.com/m/trouble_with_the_curve/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771268582/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771268582/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771268582/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771268582/similar.json"}},{"id":"771266128","title":"The
256
+ Words","year":2012,"mpaa_rating":"PG-13","runtime":96,"critics_consensus":"Neither
257
+ as clever nor as interesting as it appears to think it is, The Words maroons
258
+ its talented stars in an overly complex, dramatically inert literary thriller
259
+ that''s ultimately a poor substitute for a good book.","release_dates":{"theater":"2012-09-07","dvd":"2012-12-24"},"ratings":{"critics_rating":"Rotten","critics_score":22,"audience_rating":"Spilled","audience_score":50},"synopsis":"Starring
260
+ Bradley Cooper, Jeremy Irons, Dennis Quaid, Olivia Wilde and Zoe Saldana,
261
+ the layered romantic drama The Words follows young writer Rory Jansen who
262
+ finally achieves long sought after literary success after publishing the next
263
+ great American novel. There''s only one catch - he didn''t write it. As the
264
+ past comes back to haunt him and his literary star continues to rise, Jansen
265
+ is forced to confront the steep price that must be paid for stealing another
266
+ man''s work, and for placing ambition and success above life''s most fundamental
267
+ three words. -- (C) CBS Films","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/81/11168144_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/81/11168144_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/81/11168144_det.jpg","original":"http://content6.flixster.com/movie/11/16/81/11168144_ori.jpg"},"abridged_cast":[{"name":"Bradley
268
+ Cooper","id":"351525448","characters":["Rory Jansen"]},{"name":"Jeremy Irons","id":"162652244","characters":["The
269
+ Old Man"]},{"name":"Dennis Quaid","id":"162655527","characters":["Clay Hammond"]},{"name":"Olivia
270
+ Wilde","id":"326299741","characters":["Daniella","Danielle"]},{"name":"Zoe
271
+ Saldana","id":"162660050","characters":["Dora Jansen"]}],"alternate_ids":{"imdb":"1840417"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266128.json","alternate":"http://www.rottentomatoes.com/m/the_words/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266128/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266128/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266128/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771266128/similar.json"}},{"id":"771186945","title":"Looper","year":2012,"mpaa_rating":"R","runtime":119,"critics_consensus":"As
272
+ thought-provoking as it is thrilling, Looper delivers an uncommonly smart,
273
+ bravely original blend of futuristic sci-fi and good old-fashioned action.","release_dates":{"theater":"2012-09-28","dvd":"2012-12-31"},"ratings":{"critics_rating":"Certified
274
+ Fresh","critics_score":93,"audience_rating":"Upright","audience_score":87},"synopsis":"In
275
+ the futuristic action thriller Looper, time travel will be invented - but
276
+ it will be illegal and only available on the black market. When the mob wants
277
+ to get rid of someone, they will send their target 30 years into the past,
278
+ where a \"looper\" - a hired gun, like Joe (Joseph Gordon-Levitt) - is waiting
279
+ to mop up. Joe is getting rich and life is good... until the day the mob decides
280
+ to \"close the loop,\" sending back Joe''s future self (Bruce Willis) for
281
+ assassination. -- (C) Sony","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/81/11168184_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/81/11168184_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/81/11168184_det.jpg","original":"http://content6.flixster.com/movie/11/16/81/11168184_ori.jpg"},"abridged_cast":[{"name":"Bruce
282
+ Willis","id":"162652509","characters":["Joe","Old Joe"]},{"name":"Joseph Gordon-Levitt","id":"162666960","characters":["Joe"]},{"name":"Emily
283
+ Blunt","id":"162685827","characters":["Sara"]},{"name":"Paul Dano","id":"303713360","characters":["Seth"]},{"name":"Noah
284
+ Segan","id":"326299031","characters":["Kid Blue"]}],"alternate_ids":{"imdb":"1276104"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771186945.json","alternate":"http://www.rottentomatoes.com/m/looper/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771186945/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771186945/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771186945/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771186945/similar.json"}},{"id":"771225278","title":"Cosmopolis","year":2012,"mpaa_rating":"R","runtime":108,"critics_consensus":"Though
285
+ some may find it cold and didactic, Cosmopolis benefits from David Cronenberg''s
286
+ precise direction, resulting in a psychologically complex adaptation of Don
287
+ DeLillo''s novel.","release_dates":{"theater":"2012-08-17","dvd":"2013-01-01"},"ratings":{"critics_rating":"Fresh","critics_score":65,"audience_rating":"Spilled","audience_score":35},"synopsis":"New
288
+ York City, not-too-distant-future: Eric Packer, a 28 year-old finance golden
289
+ boy dreaming of living in a civilization ahead of this one, watches a dark
290
+ shadow cast over the firmament of the Wall Street galaxy, of which he is the
291
+ uncontested king. As he is chauffeured across midtown Manhattan to get a haircut
292
+ at his father''s old barber, his anxious eyes are glued to the yuan''s exchange
293
+ rate: it is mounting against all expectations, destroying Eric''s bet against
294
+ it. Eric Packer is losing his empire with every tick of the clock. Meanwhile,
295
+ an eruption of wild activity unfolds in the city''s streets. Petrified as
296
+ the threats of the real world infringe upon his cloud of virtual convictions,
297
+ his paranoia intensifies during the course of his 24-hour cross-town odyssey.
298
+ Packer starts to piece together clues that lead him to a most terrifying secret:
299
+ his imminent assassination. -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/41/11164165_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/41/11164165_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/41/11164165_det.jpg","original":"http://content7.flixster.com/movie/11/16/41/11164165_ori.jpg"},"abridged_cast":[{"name":"Robert
300
+ Pattinson","id":"770677984","characters":["Eric Packer"]},{"name":"Juliette
301
+ Binoche","id":"162655186","characters":["Didi Fancher"]},{"name":"Samantha
302
+ Morton","id":"162655611","characters":["Vija Kinski"]},{"name":"Sarah Gadon","id":"241691073","characters":["Elise
303
+ Shiffrin","Elise Shifrin"]},{"name":"Mathieu Amalric","id":"326393387","characters":["Andre
304
+ Petrescu"]}],"alternate_ids":{"imdb":"1480656"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225278.json","alternate":"http://www.rottentomatoes.com/m/cosmopolis/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225278/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225278/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225278/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225278/similar.json"}},{"id":"771207918","title":"Dredd","year":2012,"mpaa_rating":"R","runtime":95,"critics_consensus":"Fueled
305
+ by bombastic violence and impressive special effects, rooted in self-satire
306
+ and deadpan humor, Dredd 3D is a rare example of a remake that actually works.","release_dates":{"theater":"2012-09-21","dvd":"2013-01-08"},"ratings":{"critics_rating":"Certified
307
+ Fresh","critics_score":78,"audience_rating":"Upright","audience_score":75},"synopsis":"The
308
+ future America is an irradiated waste land. On its East Coast, running from
309
+ Boston to Washington DC, lies Mega City One- a vast, violent metropolis where
310
+ criminals rule the chaotic streets. The only force of order lies with the
311
+ urban cops called \"Judges\" who possess the combined powers of judge, jury
312
+ and instant executioner. Known and feared throughout the city, Dredd (Karl
313
+ Urban) is the ultimate Judge, challenged with ridding the city of its latest
314
+ scourge - a dangerous drug epidemic that has users of \"Slo-Mo\" experiencing
315
+ reality at a fraction of its normal speed. -- (C) Lionsgate","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/82/11168284_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/82/11168284_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/82/11168284_det.jpg","original":"http://content6.flixster.com/movie/11/16/82/11168284_ori.jpg"},"abridged_cast":[{"name":"Karl
316
+ Urban","id":"162654704","characters":["Judge Dredd"]},{"name":"Olivia Thirlby","id":"326433362","characters":["Cassandra
317
+ Anderson"]},{"name":"Lena Headey","id":"162653508","characters":["Ma-Ma"]},{"name":"Wood
318
+ Harris","id":"162696247","characters":["Kay"]},{"name":"Langley Kirkwood","id":"770688827","characters":["Judge
319
+ Lex"]}],"alternate_ids":{"imdb":"1343727"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771207918.json","alternate":"http://www.rottentomatoes.com/m/dredd/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771207918/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771207918/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771207918/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771207918/similar.json"}},{"id":"771205894","title":"Frankenweenie","year":2012,"mpaa_rating":"PG","runtime":90,"critics_consensus":"Frankenweenie
320
+ is an energetic stop-motion horror movie spoof with lovingly crafted visuals
321
+ and a heartfelt, oddball story.","release_dates":{"theater":"2012-10-05","dvd":"2013-01-08"},"ratings":{"critics_rating":"Certified
322
+ Fresh","critics_score":88,"audience_rating":"Upright","audience_score":74},"synopsis":"From
323
+ creative genius Tim Burton comes Frankenweenie, a heartwarming tale about
324
+ a boy and his dog. After unexpectedly losing his beloved dog Sparky, young
325
+ Victor harnesses the power of science to bring his best friend back to life-with
326
+ just a few minor adjustments. He tries to hide his home-sewn creation, but
327
+ when Sparky gets out, Victor''s fellow students, teachers and the entire town
328
+ all learn that getting a new \"leash on life\" can be monstrous. A stop-motion
329
+ animated film, Frankenweenie will be filmed in black and white and rendered
330
+ in 3D, which will elevate the classic style to a whole new experience. --
331
+ (C) Disney","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/54/11165465_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/54/11165465_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/54/11165465_det.jpg","original":"http://content7.flixster.com/movie/11/16/54/11165465_ori.jpg"},"abridged_cast":[{"name":"Charlie
332
+ Tahan","id":"770670076","characters":["Victor","Victor Frankenstein","Young
333
+ Victor"]},{"name":"Winona Ryder","id":"162659115","characters":["Elsa","Elsa
334
+ Van Helsing"]},{"name":"Martin Landau","id":"162658209","characters":["Mr.
335
+ Rzykruski"]},{"name":"Catherine O''Hara","id":"162658234","characters":["Gym
336
+ Teacher","Mrs. Frankenstein","Victor''s Mom","Weird Girl"]},{"name":"Atticus
337
+ Shaffer","id":"771052788","characters":["Edgar","Edgar \"E\" Gore"]}],"alternate_ids":{"imdb":"1142977"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205894.json","alternate":"http://www.rottentomatoes.com/m/frankenweenie_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205894/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205894/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205894/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771205894/similar.json"}},{"id":"771240777","title":"House
338
+ at the End of the Street","year":2012,"mpaa_rating":"PG-13","runtime":101,"critics_consensus":"Poorly
339
+ conceived, clumsily executed, and almost completely bereft of scares, House
340
+ at the End of the Street strands its talented star in a film as bland as its
341
+ title.","release_dates":{"theater":"2012-09-21","dvd":"2013-01-08"},"ratings":{"critics_rating":"Rotten","critics_score":11,"audience_rating":"Spilled","audience_score":46},"synopsis":"Seeking
342
+ a fresh start, newly divorced Sarah (Elisabeth Shue) and her daughter Elissa
343
+ (Jennifer Lawrence) find the house of their dreams in a small, upscale, rural
344
+ town. But when startling and unexplainable events begin to happen, Sarah and
345
+ Elissa learn the town is in the shadows of a chilling secret. Years earlier,
346
+ in the house next door, a daughter killed her parents in their beds, and disappeared
347
+ - leaving only a brother, Ryan (Max Thieriot), as the sole survivor. Against
348
+ Sarah''s wishes, Elissa begins a relationship with the reclusive Ryan - and
349
+ the closer they get, the deeper they''re all pulled into a mystery more dangerous
350
+ than they ever imagined. -- (C) Relativity","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/45/11164530_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/45/11164530_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/45/11164530_det.jpg","original":"http://content8.flixster.com/movie/11/16/45/11164530_ori.jpg"},"abridged_cast":[{"name":"Jennifer
351
+ Lawrence","id":"770800260","characters":["Elissa"]},{"name":"Elisabeth Shue","id":"162654719","characters":["Sarah"]},{"name":"Gil
352
+ Bellows","id":"162716278","characters":["Weaver"]},{"name":"Eva Link","id":"771420964","characters":["Carrie
353
+ Anne"]},{"name":"Nolan Gerard Funk","id":"770815614","characters":["Tyler","Tyler
354
+ Reynolds"]}],"alternate_ids":{"imdb":"1582507"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240777.json","alternate":"http://www.rottentomatoes.com/m/house_at_the_end_of_the_street/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240777/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240777/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240777/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240777/similar.json"}},{"id":"771265551","title":"Hit
355
+ & Run","year":2012,"mpaa_rating":"R","runtime":100,"critics_consensus":"Though
356
+ Hit & Run has some surprisingly oft-kilter filmmaking, the action doesn''t
357
+ add to much and the writing''s a bit smug.","release_dates":{"theater":"2012-08-22","dvd":"2013-01-08"},"ratings":{"critics_rating":"Rotten","critics_score":48,"audience_rating":"Spilled","audience_score":52},"synopsis":"Hit
358
+ and Run is a comedy about a young couple (Kristen Bell and Dax Shepard) that
359
+ risks it all when they leave their small town life and embark on a road trip
360
+ that may lead them towards the opportunity of a lifetime. Their fast-paced
361
+ road trip grows awkwardly complicated and hilarious when they are chased by
362
+ a friend from the past (Bradley Cooper), a federal marshal (Tom Arnold) and
363
+ a band of misfits. -- (C) Open Road","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/80/11168039_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/80/11168039_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/80/11168039_det.jpg","original":"http://content9.flixster.com/movie/11/16/80/11168039_ori.jpg"},"abridged_cast":[{"name":"Bradley
364
+ Cooper","id":"351525448","characters":["Alex Dmitri"]},{"name":"Kristen Bell","id":"326395677","characters":["Annie"]},{"name":"Kristin
365
+ Chenoweth","id":"162657121","characters":["Debbie"]},{"name":"Dax Shepard","id":"162655166","characters":["Charlie
366
+ Bronson"]},{"name":"Beau Bridges","id":"162664689","characters":["Clint Perkins"]}],"alternate_ids":{"imdb":"2097307"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771265551.json","alternate":"http://www.rottentomatoes.com/m/hit_and_run_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771265551/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771265551/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771265551/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771265551/similar.json"}},{"id":"771309696","title":"Stolen","year":2012,"mpaa_rating":"R","runtime":96,"release_dates":{"theater":"2012-09-14","dvd":"2013-01-08"},"ratings":{"critics_rating":"Rotten","critics_score":11,"audience_rating":"Spilled","audience_score":37},"synopsis":"Will
367
+ Montgomery (Nicolas Cage) is a master thief who after being double-crossed
368
+ in a heist gone awry is sent to prison for 8 years. Upon his release he''s
369
+ ready to leave his criminal past behind and try to rebuild a relationship
370
+ with his estranged daughter Allison. The FBI and his old cohorts believe that
371
+ he hid the loot from the last heist 8 years ago, $10 Million in Bonds. To
372
+ get his hands on it, his old partner Vincent kidnaps Allison and demands the
373
+ entire $ 10 Million as ransom. Montgomery only has one day to get the $10
374
+ Million ransom but much to the disbelief of the FBI on his trail and Vincent,
375
+ Will doesn''t actually have it. Instead, he must trust his instincts and his
376
+ old partner in crime, the beautiful, sexy and smart Riley, to do one more,
377
+ clever heist to get his daughter back alive before it''s too late. -- (C)
378
+ Official Site","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/65/11166575_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/65/11166575_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/65/11166575_det.jpg","original":"http://content9.flixster.com/movie/11/16/65/11166575_ori.jpg"},"abridged_cast":[{"name":"Nicolas
379
+ Cage","id":"162653923","characters":["Will Montgomery"]},{"name":"Josh Lucas","id":"162652973","characters":["Vincent"]},{"name":"Danny
380
+ Huston","id":"162653683","characters":["Tim Harlend"]},{"name":"Malin Akerman","id":"512896981","characters":["Riley
381
+ Jeffers","Riley Simms"]},{"name":"Sami Gayle","id":"771398411","characters":["Alison
382
+ Loeb"]}],"alternate_ids":{"imdb":"1656186"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309696.json","alternate":"http://www.rottentomatoes.com/m/stolen_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309696/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309696/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309696/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309696/similar.json"}},{"id":"771267239","title":"Compliance","year":2012,"mpaa_rating":"R","runtime":90,"critics_consensus":"Anchored
383
+ by smart, sensitive direction and strong performances, Complicance is a ripped-from-the-headlines
384
+ thriller that''s equal parts gripping and disturbing.","release_dates":{"theater":"2012-08-17","dvd":"2013-01-08"},"ratings":{"critics_rating":"Certified
385
+ Fresh","critics_score":89,"audience_rating":"Upright","audience_score":66},"synopsis":"Becky
386
+ and Sandra aren''t the best of friends. Sandra is a middle-aged manager at
387
+ a fast-food restaurant; Becky is a teenaged counter girl who really needs
388
+ the job. One stressful day (too many customers and too little bacon), a police
389
+ officer calls, accusing Becky of stealing money from a customer''s purse,
390
+ which she vehemently denies. Sandra, overwhelmed by her managerial responsibilities,
391
+ complies with the officer''s orders to detain Becky. This choice begins a
392
+ nightmare that tragically blurs the lines between expedience and prudence,
393
+ legality and reason. -- (C) Magnolia","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/57/11165767_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/57/11165767_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/57/11165767_det.jpg","original":"http://content9.flixster.com/movie/11/16/57/11165767_ori.jpg"},"abridged_cast":[{"name":"Ann
394
+ Dowd","id":"364660474","characters":["Sandra"]},{"name":"Dreama Walker","id":"770812968","characters":["Becky"]},{"name":"Pat
395
+ Healy","id":"410745293","characters":["Officer Daniels"]},{"name":"Bill Camp","id":"770877563","characters":["Van"]},{"name":"Philip
396
+ Ettinger","id":"771078580","characters":["Kevin"]}],"alternate_ids":{"imdb":"1971352"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267239.json","alternate":"http://www.rottentomatoes.com/m/compliance_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267239/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267239/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267239/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267239/similar.json"}},{"id":"771254097","title":"Samsara","year":2012,"mpaa_rating":"PG-13","runtime":99,"critics_consensus":"It''s
397
+ a tad heavy-handed in its message, but Samsara''s overwhelmingly beautiful
398
+ visuals more than compensate for any narrative flaws.","release_dates":{"theater":"2012-08-24","dvd":"2013-01-08"},"ratings":{"critics_rating":"Certified
399
+ Fresh","critics_score":76,"audience_rating":"Upright","audience_score":86},"synopsis":"Prepare
400
+ yourself for an unparalleled sensory experience. Samsara reunites director
401
+ Ron Fricke and producer Mark Magidson, whose award-winning films Baraka and
402
+ Chronos were acclaimed for combining visual and musical artistry. Samsara
403
+ is a Sanskrit word that means \"the ever turning wheel of life\" and is the
404
+ point of departure for the filmmakers as they search for the elusive current
405
+ of interconnection that runs through our lives. Filmed over a period of almost
406
+ five years and in twenty-five countries, Samsara transports us to sacred grounds,
407
+ disaster zones, industrial sites, and natural wonders. By dispensing with
408
+ dialogue and descriptive text, Samsara subverts our expectations of a traditional
409
+ documentary, instead encouraging our own inner interpretations inspired by
410
+ images and music that infuses the ancient with the modern. -- (C) Oscilloscope","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/62/11166205_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/62/11166205_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/62/11166205_det.jpg","original":"http://content7.flixster.com/movie/11/16/62/11166205_ori.jpg"},"abridged_cast":[],"alternate_ids":{"imdb":"0770802"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254097.json","alternate":"http://www.rottentomatoes.com/m/samsara_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254097/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254097/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254097/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771254097/similar.json"}},{"id":"771257666","title":"Taken
411
+ 2","year":2012,"mpaa_rating":"PG-13","runtime":92,"critics_consensus":"Taken
412
+ 2 is largely bereft of the kinetic thrills -- and surprises -- that made the
413
+ original a hit.","release_dates":{"theater":"2012-10-05","dvd":"2013-01-15"},"ratings":{"critics_rating":"Rotten","critics_score":21,"audience_rating":"Spilled","audience_score":55},"synopsis":"Liam
414
+ Neeson returns as Bryan Mills, the retired CIA agent with a \"particular set
415
+ of skills\" who stopped at nothing to save his daughter Kim from kidnappers.
416
+ When the father of one of the villains Bryan killed swears revenge, and takes
417
+ Bryan and his wife hostage in Istanbul, Bryan enlists Kim to help them escape.
418
+ Bryan then employs his unique tactics to get his family to safety and systematically
419
+ take out the kidnappers, one by one. -- (C) Official Site","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/78/11167831_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/78/11167831_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/78/11167831_det.jpg","original":"http://content9.flixster.com/movie/11/16/78/11167831_ori.jpg"},"abridged_cast":[{"name":"Liam
420
+ Neeson","id":"162652242","characters":["Bryan Mills"]},{"name":"Maggie Grace","id":"162654594","characters":["Kim","Kim
421
+ Mills"]},{"name":"Famke Janssen","id":"162669246","characters":["Lenore"]},{"name":"Rade
422
+ Sherbedgia","id":"679916648","characters":["Murad"]},{"name":"Luke Grimes","id":"770791372","characters":["Jamie"]}],"alternate_ids":{"imdb":"1397280"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257666.json","alternate":"http://www.rottentomatoes.com/m/taken_2_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257666/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257666/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257666/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257666/similar.json"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/current_releases.json?page_limit=21&country=us&page=1","next":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/current_releases.json?page_limit=21&country=us&page=2","alternate":"http://www.rottentomatoes.com/dvd/current_releases.php"},"link_template":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/current_releases.json?page_limit={results-per-page}&page={page-number}&country={country-code}"}
423
+
424
+ '
425
+ http_version:
426
+ recorded_at: Wed, 20 Feb 2013 15:31:54 GMT
427
+ recorded_with: VCR 2.4.0