Skip to content

Instantly share code, notes, and snippets.

@beverlynelson
Created October 24, 2012 01:45
Show Gist options
  • Save beverlynelson/3943239 to your computer and use it in GitHub Desktop.
Save beverlynelson/3943239 to your computer and use it in GitHub Desktop.
The Awesome List Practice Challenge #1 - Ruby Friends
Start a new Rails App from scratch that allows users to store an awesome list of their favorite music and movies and books.
Each user will have their own Awesome List to organize and display favorites.
You may set up the models and relationships however you like. Here are some ideas on what to feature for each category:
Movies - Title, Image, Year, Genre, Actors, Comments, etc ...
Music - Artist, Image, Album, Genre, Favorite song, Comments, etc ...
Books - Title, Image, Author, Description, Comments
and display however you like but these are the skills to practice:
-filtering display to only show lists/items that "belong to" the person
-practice sorting of items, try out ASC and DESC to see how they work
-adding an image for the music, movie or book through carrierwave or paperclip
-belongs_to and has_many relationships
Advanced skills:
-add authentication
-create public and private lists
-practice deploying to heroku
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment