Created
September 30, 2013 21:42
-
-
Save sarony/6770730 to your computer and use it in GitHub Desktop.
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
| # A movie collection that organizes by genres | |
| # Recipes with ingredients | |
| # User profiles where each user has a list of favorite colors along with 3 personal essays, essay_1, essay_2, essay_3 | |
| movie_collection = { | |
| :action => ["Bourne", "Salt", "Terminator"], | |
| :comedy => ["Madea", "Zoolander", "Bridesmaids"], | |
| :horror => ["28", "Saw", "The Hills Have Eyes"] | |
| } | |
| recipes = { | |
| :pasta => ["tomato sauce", "meatballs", "macaroni"], | |
| :cookies => ["flour", "sugar", "butter", "chocolate chips"], | |
| :smoothie => ["banana", "greek yogurt", "milk", "blueberries"] | |
| } | |
| user_profile = { | |
| :user1 => [{:fav_colors=>["blue", "orange", "red"]}, {:essays=>["essay_1", "essay_2", "essay_3"]}], | |
| :user2 => [{:fav_colors=>["yellow", "black"]}, {:essay=>["essay_1", "essay_2", "essay_3"]}], | |
| :user3 => [{:fav_colors=>["magenta", "white"]}, {:essay=>["essay_1", "essay_2", "essay_3"]}] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment