A simple, experimental wrapper around the Rotten Tomatoes API, that allows you to search for movies (http://developer.rottentomatoes.com/). Uses Httparty for accessing the json-api for Rotten Tomatoes.
Add your API-Key to your enviroment using
export ROTTEN_TOMATOES_API_KEY=["<YOUR API KEY>"]
Then add
gem "rotten_tomatoes_api"
to your gemfile.
movie_list = RottenTomatoesApi::MovieList.search("breathless")
movie_list.movies.each do |movie|
puts movie.title
puts movie.posters.original
end