Mercurial > hg > soundsoftware-site
view test/exemplars/document_category_exemplar.rb @ 869:a8d3211a6379 feature_121
Close obsolete branch feature_121
author | Chris Cannam |
---|---|
date | Tue, 05 Apr 2011 10:28:08 +0100 |
parents | 513646585e45 |
children | cbb26bc654de |
line wrap: on
line source
class DocumentCategory < Enumeration generator_for :name, :method => :next_name generator_for :type => 'DocumentCategory' def self.next_name @last_name ||= 'DocumentCategory0' @last_name.succ! @last_name end end