Module: ActiveSupport::Multibyte
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/multibyte/chars.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/multibyte.rb,
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/multibyte/unicode.rb
Overview
:nodoc:
Defined Under Namespace
Modules: Unicode Classes: Chars
Class Method Summary collapse
-
.proxy_class ⇒ Object
Returns the current proxy class.
-
.proxy_class=(klass) ⇒ Object
The proxy class returned when calling mb_chars.
Class Method Details
.proxy_class ⇒ Object
Returns the current proxy class.
19 20 21 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/multibyte.rb', line 19 def self.proxy_class @proxy_class ||= ActiveSupport::Multibyte::Chars end |
.proxy_class=(klass) ⇒ Object
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
14 15 16 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/multibyte.rb', line 14 def self.proxy_class=(klass) @proxy_class = klass end |