##// END OF EJS Templates
remove trailing white-spaces from test/functional/my_controller_test.rb....
remove trailing white-spaces from test/functional/my_controller_test.rb. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6598 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3556:6a6f40397885
r6478:ed4724e34f08
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