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 / wiki_page_exemplar.rb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (286 Bytes)

1
class WikiPage < ActiveRecord::Base
2
  generator_for :title, :method => :next_title
3
  generator_for :wiki, :method => :generate_wiki
4

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

    
11
  def self.generate_wiki
12
    Wiki.generate!
13
  end
14
end