Created
July 10, 2013 19:19
-
-
Save phlco/5969315 to your computer and use it in GitHub Desktop.
movies lab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Moviez | |
Use the IMDB gem to create a new movies_app. | |
Users should be able to search for movies. | |
Display search results that link to a show page for each movie. | |
Include a button to save favorited movies to the database. | |
Saved movies should have a title, year, plot, mpaa_rating and a rating that goes from 0 to 100. | |
Create a separate view for saved movies. | |
Saved movies will have a default rating of 50. | |
Create buttons on the movie show page to vote the movie's rating up or down. | |
Create partials for navigation and movie details. | |
The movie's search results and movie show pages should include a button to "fave" a movie, which instantly saves it to the database (if it's the search page) and sets it's rating to 100%. | |
Use link_to, button_to and the [image_tag](http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html#method-i-image_tag) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment