From daea1a5f3ae7a2faaab131f74c79146ff080523f Mon Sep 17 00:00:00 2001 From: duerst Date: Mon, 6 Oct 2014 02:21:23 +0000 Subject: tool/unicode_norm_gen.rb: Adding/tweaking comments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/unicode_norm_gen.rb | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'tool') diff --git a/tool/unicode_norm_gen.rb b/tool/unicode_norm_gen.rb index 03a32bbdc5..c90b16dac5 100644 --- a/tool/unicode_norm_gen.rb +++ b/tool/unicode_norm_gen.rb @@ -1,14 +1,17 @@ # coding: utf-8 -# Copyright 2010-2013 Ayumu Nojima (野島 歩) and Martin J. Dürst (duerst@it.aoyama.ac.jp) -# available under the same licence as Ruby itself -# (see http://www.ruby-lang.org/en/LICENSE.txt) +# Copyright Ayumu Nojima (野島 歩) and Martin J. Dürst (duerst@it.aoyama.ac.jp) +# Script to generate Ruby data structures used in implementing +# String#unicode_normalize,... + +# Constants for input and ouput directory InputDataDir = '../enc/unicode/data' OuputDataDir = '../lib/unicode_normalize' +# convenience methods class Integer - def to_UTF8() + def to_UTF8() # convert to string, taking legibility into account if self>0xFFFF "\\u{#{to_s(16).upcase}}" elsif CombiningClass[self] or self=='\\'.ord or self=='"'.ord @@ -135,7 +138,7 @@ end.line_slice "\n " open("#{OuputDataDir}/normalize_tables.rb", "w").print <