##// 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:

r2816:35333367dff6
r5151:e35e04de8e61
Show More
role_exemplar.rb
8 lines | 157 B | text/x-ruby | RubyLexer
class Role < ActiveRecord::Base
generator_for :name, :method => :next_name
def self.next_name
@last_name ||= 'Role0'
@last_name.succ!
end
end