view test/exemplars/.svn/text-base/custom_field_exemplar.rb.svn-base @ 401:a0f6e994657f feature_113

Fix index file name; minor text changes; hack in link to repo (currently hard-coded with project name!)
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Mon, 11 Apr 2011 20:08:05 +0100
parents 513646585e45
children
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