Sha256: 1715d7ef665bab4d9dbbc1290b4957d379040172d265038f71bbe6c2bee49134

Contents?: true

Size: 1.94 KB

Versions: 123

Compression:

Stored size: 1.94 KB

Contents

# frozen_string_literal: true

require "active_support/multibyte"

class String
  # == Multibyte proxy
  #
  # +mb_chars+ is a multibyte safe proxy for string methods.
  #
  # It creates and returns an instance of the ActiveSupport::Multibyte::Chars class which
  # encapsulates the original string. A Unicode safe version of all the String methods are defined on this proxy
  # class. If the proxy class doesn't respond to a certain method, it's forwarded to the encapsulated string.
  #
  #   >> "lj".mb_chars.upcase.to_s
  #   => "LJ"
  #
  # NOTE: Ruby 2.4 and later support native Unicode case mappings:
  #
  #   >> "lj".upcase
  #   => "LJ"
  #
  # == Method chaining
  #
  # All the methods on the Chars proxy which normally return a string will return a Chars object. This allows
  # method chaining on the result of any of these methods.
  #
  #   name.mb_chars.reverse.length # => 12
  #
  # == Interoperability and configuration
  #
  # The Chars object tries to be as interchangeable with String objects as possible: sorting and comparing between
  # String and Char work like expected. The bang! methods change the internal string representation in the Chars
  # object. Interoperability problems can be resolved easily with a +to_s+ call.
  #
  # For more information about the methods defined on the Chars proxy see ActiveSupport::Multibyte::Chars. For
  # information about how to change the default Multibyte behavior see ActiveSupport::Multibyte.
  def mb_chars
    ActiveSupport::Multibyte.proxy_class.new(self)
  end

  # Returns +true+ if string has utf_8 encoding.
  #
  #   utf_8_str = "some string".encode "UTF-8"
  #   iso_str = "some string".encode "ISO-8859-1"
  #
  #   utf_8_str.is_utf8? # => true
  #   iso_str.is_utf8?   # => false
  def is_utf8?
    case encoding
    when Encoding::UTF_8, Encoding::US_ASCII
      valid_encoding?
    when Encoding::ASCII_8BIT
      dup.force_encoding(Encoding::UTF_8).valid_encoding?
    else
      false
    end
  end
end

Version data entries

123 entries across 117 versions & 16 rubygems

Version Path
activesupport-7.2.0 lib/active_support/core_ext/string/multibyte.rb
activesupport-7.2.0.rc1 lib/active_support/core_ext/string/multibyte.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/core_ext/string/multibyte.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/string/multibyte.rb
activesupport-7.2.0.beta3 lib/active_support/core_ext/string/multibyte.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/core_ext/string/multibyte.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/core_ext/string/multibyte.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/core_ext/string/multibyte.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/string/multibyte.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/string/multibyte.rb
activesupport-7.2.0.beta2 lib/active_support/core_ext/string/multibyte.rb
activesupport-7.1.3.4 lib/active_support/core_ext/string/multibyte.rb
activesupport-7.0.8.4 lib/active_support/core_ext/string/multibyte.rb
activesupport-6.1.7.8 lib/active_support/core_ext/string/multibyte.rb
activesupport-7.2.0.beta1 lib/active_support/core_ext/string/multibyte.rb
activesupport-7.1.3.2 lib/active_support/core_ext/string/multibyte.rb
activesupport-7.1.3.1 lib/active_support/core_ext/string/multibyte.rb
activesupport-7.0.8.1 lib/active_support/core_ext/string/multibyte.rb
activesupport-6.1.7.7 lib/active_support/core_ext/string/multibyte.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3/lib/active_support/core_ext/string/multibyte.rb