2008-09-21 11:21:30 -04:00
|
|
|
module ActiveSupport #:nodoc:
|
2008-09-21 11:28:05 -04:00
|
|
|
module Multibyte
|
2009-11-02 16:10:02 -05:00
|
|
|
autoload :Chars, 'active_support/multibyte/chars'
|
2010-05-10 09:46:37 -04:00
|
|
|
autoload :Unicode, 'active_support/multibyte/unicode'
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2008-09-21 11:21:30 -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 the ActiveSupport::Multibyte::Chars implementation for
|
|
|
|
# an example how to do this.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# ActiveSupport::Multibyte.proxy_class = CharsForUTF32
|
2009-08-31 15:16:22 -04:00
|
|
|
def self.proxy_class=(klass)
|
|
|
|
@proxy_class = klass
|
|
|
|
end
|
|
|
|
|
2010-06-11 06:15:34 -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-01-05 15:02:14 -05:00
|
|
|
end
|