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

History | View | Annotate | Download (224 Bytes)

1
class IssuePriority < Enumeration
2
  generator_for :name, :method => :next_name
3
  generator_for :type => 'IssuePriority'
4

    
5
  def self.next_name
6
    @last_name ||= 'IssuePriority0'
7
    @last_name.succ!
8
    @last_name
9
  end
10
end