Mercurial > hg > soundsoftware-site
view test/exemplars/document_exemplar.rb @ 682:7e887544be06 feature_36
Add title for Bibliography module in settings, fixing #288
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 15 Sep 2011 15:39:07 +0100 |
parents | 513646585e45 |
children | cbb26bc654de |
line wrap: on
line source
class Document < ActiveRecord::Base generator_for :title, :method => :next_title def self.next_title @last_title ||= 'Document001' @last_title.succ! @last_title end end