module

ActiveSupport::Multibyte

No documentation available for this module.

Constants

NORMALIZATION_FORMS = [:c, :kc, :d, :kd]

UCD = UnicodeDatabase.new

UNICODE_VERSION = '5.1.0'

VALID_CHARACTER = { # Borrowed from the Kconv library by Shinji KONO - (also as seen on the W3C site) 'UTF-8' => /\\A(?: [\\x00-\\x7f] | [\\xc2-\\xdf] [\\x80-\\xbf] | \\xe0 [\\xa0-\\xbf] [\\x80-\\xbf] | [\\xe1-\\xef] [\\x80-\\xbf] [\\x80-\\xbf] | \\xf0 [\\x90-\\xbf] [\\x80-\\xbf] [\\x80-\\xbf] | [\\xf1-\\xf3] [\\x80-\\xbf] [\\x80-\\xbf] [\\x80-\\xbf] | \\xf4 [\\x80-\\x8f] [\\x80-\\xbf] [\\x80-\\xbf])\\z /xn, # Quick check for valid Shift-JIS characters, disregards the odd-even pairing 'Shift_JIS' => /\\A(?: [\\x00-\\x7e \\xa1-\\xdf] | [\\x81-\\x9f \\xe0-\\xef] [\\x40-\\x7e \\x80-\\x9e \\x9f-\\xfc])\\z /xn

Files

  • activesupport/lib/active_support/multibyte.rb
  • activesupport/lib/active_support/multibyte/chars.rb
  • activesupport/lib/active_support/multibyte/exceptions.rb
  • activesupport/lib/active_support/multibyte/unicode_database.rb
  • activesupport/lib/active_support/multibyte/utils.rb

Nested classes and modules