Created
October 6, 2013 16:50
-
-
Save ahimmelstoss/6856307 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
def full_library | |
{ | |
:"U2" => { | |
:albums => { | |
:"The Joshua Tree" => { | |
:songs => ["With or Without You", "Still Haven't Found What I'm Looking For", "Bullet the Blue Sky"] | |
}, | |
:"Zooropa" => { | |
:songs => ["Numb"] | |
} | |
} | |
}, | |
:"Talking Heads" => { | |
:albums => { | |
:"Fear of Music" => { | |
:songs => ["Life During Wartime", "Heaven"] | |
}, | |
:"Speaking in Tongues" => { | |
:songs => ["This Must Be the Place (Naive Melody)", "Burning Down the House"] | |
} | |
} | |
}, | |
:"Huey Lewis and the News" => { | |
:albums => { | |
:"Sports" => { | |
:songs => ["I Want a New Drug", "If This is It", "Heart of Rock and Roll"] | |
} | |
} | |
} | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment