Skip to content

Instantly share code, notes, and snippets.

@sarony
Created September 30, 2013 21:42
Show Gist options
  • Select an option

  • Save sarony/6770730 to your computer and use it in GitHub Desktop.

Select an option

Save sarony/6770730 to your computer and use it in GitHub Desktop.
# 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