rails/activesupport/lib/active_support/multibyte.rb

21 lines
682 B
Ruby
Raw Normal View History

module ActiveSupport #:nodoc:
2008-09-21 15:28:05 +00:00
module Multibyte
2009-11-02 21:10:02 +00:00
autoload :Chars, 'active_support/multibyte/chars'
autoload :Unicode, 'active_support/multibyte/unicode'
# 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.
#
# ActiveSupport::Multibyte.proxy_class = CharsForUTF32
def self.proxy_class=(klass)
@proxy_class = klass
end
2010-06-11 10:15:34 +00:00
# Returns the current proxy class
def self.proxy_class
@proxy_class ||= ActiveSupport::Multibyte::Chars
end
end
end