To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / test / exemplars / news_exemplar.rb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (373 Bytes)

1
class News < ActiveRecord::Base
2
  generator_for :title, :method => :next_title
3
  generator_for :description, :method => :next_description
4

    
5
  def self.next_title
6
    @last_title ||= 'A New Item'
7
    @last_title.succ!
8
    @last_title
9
  end
10

    
11
  def self.next_description
12
    @last_description ||= 'Some content here'
13
    @last_description.succ!
14
    @last_description
15
  end
16
end