diff options
author | Tony Ta <tonyta.tt@gmail.com> | 2015-12-15 22:40:52 -0800 |
---|---|---|
committer | Tony Ta <tonyta.tt@gmail.com> | 2015-12-15 23:16:02 -0800 |
commit | 1e15af5a9d50b80cecb05081c134df151918d600 (patch) | |
tree | 40b990c30140b2f419b8e90dd9e7bc88c04cd432 /activesupport/bin | |
parent | f7014c5bb6d73024057d114dbed24c5164b5870c (diff) | |
download | rails-1e15af5a9d50b80cecb05081c134df151918d600.tar.gz rails-1e15af5a9d50b80cecb05081c134df151918d600.tar.bz2 rails-1e15af5a9d50b80cecb05081c134df151918d600.zip |
deletes commented code introduced in f238d495
ActiveSupport::Multibyte::Unicode::Codepoint doesn't support this API
Diffstat (limited to 'activesupport/bin')
-rwxr-xr-x | activesupport/bin/generate_tables | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activesupport/bin/generate_tables b/activesupport/bin/generate_tables index 71a6b78652..2193533588 100755 --- a/activesupport/bin/generate_tables +++ b/activesupport/bin/generate_tables @@ -50,16 +50,11 @@ module ActiveSupport ([0-9A-F]*); # simple lowercase mapping ([0-9A-F]*)$/ix # simple titlecase mapping codepoint.code = $1.hex - #codepoint.name = $2 - #codepoint.category = $3 codepoint.combining_class = Integer($4) - #codepoint.bidi_class = $5 codepoint.decomp_type = $7 codepoint.decomp_mapping = ($8=='') ? nil : $8.split.collect(&:hex) - #codepoint.bidi_mirrored = ($13=='Y') ? true : false codepoint.uppercase_mapping = ($16=='') ? 0 : $16.hex codepoint.lowercase_mapping = ($17=='') ? 0 : $17.hex - #codepoint.titlecase_mapping = ($18=='') ? nil : $18.hex @ucd.codepoints[codepoint.code] = codepoint end |