Mercurial > hg > soundsoftware-site
view test/exemplars/comment_exemplar.rb @ 625:e1eb4996257f feature_36
Minor tweak to layout for list of projects for publication
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Wed, 24 Aug 2011 16:27:01 +0100 |
parents | 513646585e45 |
children |
line wrap: on
line source
class Comment < ActiveRecord::Base generator_for :commented, :method => :generate_news generator_for :author, :method => :generate_author generator_for :comments => 'What great news this is.' def self.generate_news News.generate! end def self.generate_author User.generate_with_protected! end end