Mercurial > hg > soundsoftware-site
view test/exemplars/custom_field_exemplar.rb @ 624:11c8e189f8fc feature_36
Fix dumb code which toggled all description elements on the page, instead of only those in the right authorship
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Wed, 24 Aug 2011 16:05:15 +0100 |
parents | 513646585e45 |
children | cbb26bc654de |
line wrap: on
line source
class CustomField < ActiveRecord::Base generator_for :name, :method => :next_name generator_for :field_format => 'string' def self.next_name @last_name ||= 'CustomField0' @last_name.succ! @last_name end end