module PostSets class Artist < Post attr_reader :artist def initialize(artist) super(:tags => artist.name) @artist = artist end def posts ::Post.tag_match(@artist.name) end def presenter ::PostSetPresenters::Post.new(self) end end end