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

History | View | Annotate | Download (187 Bytes)

1
class WikiContent < ActiveRecord::Base
2
  generator_for :text => 'Some content'
3
  generator_for :page, :method => :generate_page
4

    
5
  def self.generate_page
6
    WikiPage.generate!
7
  end
8
end