2017-07-09 08:06:36 -04:00
|
|
|
# frozen_string_literal: true
|
2017-07-10 09:39:13 -04:00
|
|
|
|
2021-07-29 17:18:07 -04:00
|
|
|
module ActiveSupport # :nodoc:
|
2008-09-21 11:28:05 -04:00
|
|
|
module Multibyte
|
2016-08-06 11:58:50 -04:00
|
|
|
autoload :Chars, "active_support/multibyte/chars"
|
|
|
|
autoload :Unicode, "active_support/multibyte/unicode"
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-09-17 01:22:18 -04:00
|
|
|
# The proxy class returned when calling mb_chars. You can use this accessor
|
|
|
|
# to configure your own proxy class so you can support other encodings. See
|
2012-12-05 01:11:54 -05:00
|
|
|
# the ActiveSupport::Multibyte::Chars implementation for an example how to
|
2012-09-17 01:22:18 -04:00
|
|
|
# do this.
|
2008-09-21 11:21:30 -04:00
|
|
|
#
|
|
|
|
# ActiveSupport::Multibyte.proxy_class = CharsForUTF32
|
2009-08-31 15:16:22 -04:00
|
|
|
def self.proxy_class=(klass)
|
|
|
|
@proxy_class = klass
|
|
|
|
end
|
|
|
|
|
2012-09-17 01:22:18 -04:00
|
|
|
# Returns the current proxy class.
|
2009-08-31 15:16:22 -04:00
|
|
|
def self.proxy_class
|
|
|
|
@proxy_class ||= ActiveSupport::Multibyte::Chars
|
|
|
|
end
|
2008-09-21 11:21:30 -04:00
|
|
|
end
|
2012-05-13 21:26:53 -04:00
|
|
|
end
|