This commit is contained in:
albert
2011-06-26 01:52:42 -04:00
parent 739e28919a
commit 4e19d98047
11 changed files with 32 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
module PostSets
class Artist < Post
attr_reader :artist
def initialize(artist)
super(:tags => artist.name)
@artist = artist
end
end
end