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

History | View | Annotate | Download (174 Bytes)

1
class CustomValue < ActiveRecord::Base
2
  generator_for :custom_field, :method => :generate_custom_field
3

    
4
  def self.generate_custom_field
5
    CustomField.generate!
6
  end
7
end