##// END OF EJS Templates
PDF: fix the width of the ASCII character of Japanese PDF (#7794)....
PDF: fix the width of the ASCII character of Japanese PDF (#7794). r5256 in trunk has this change. So, there is no need to commit in trunk. Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.1-stable@5271 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3556:6a6f40397885
r5151:e35e04de8e61
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