Created
July 9, 2012 17:45
-
-
Save adamjonas/3077842 to your computer and use it in GitHub Desktop.
Missing Pieces of Blane's Final
This file contains 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
class Artist | |
def genres | |
@songs.collect{|s| s.genre} | |
end | |
end | |
class Song | |
attr_accessor :name, :song, :artist, :genre | |
def genre=(genre) | |
@genre = genre | |
@genre.songs << self | |
end | |
end | |
class Genre | |
def artists | |
@songs.collect{|s| s.artist}.uniq | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hmmmmmmmmmm