##// END OF EJS Templates
rename .rhtml to .html.erb of app/views/messages/new.rhtml....
rename .rhtml to .html.erb of app/views/messages/new.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6594 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3556:6a6f40397885
r6474:392d66713de8
Show More
issue_priority_exemplar.rb
10 lines | 224 B | text/x-ruby | RubyLexer
/ test / exemplars / issue_priority_exemplar.rb
class IssuePriority < Enumeration
generator_for :name, :method => :next_name
generator_for :type => 'IssuePriority'
def self.next_name
@last_name ||= 'IssuePriority0'
@last_name.succ!
@last_name
end
end