Sha256: 497b5fa6380b478dda8a5a88b5bf635ce6c4e752a7062477c59cd705c4c3eadc

Contents?: true

Size: 1.75 KB

Versions: 132

Compression:

Stored size: 1.75 KB

Contents

# encoding: utf-8
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.
  #
  #   name = 'Claus Müller'
  #   name.reverse # => "rell??M sualC"
  #   name.length  # => 13
  #
  #   name.mb_chars.reverse.to_s # => "rellüM sualC"
  #   name.mb_chars.length       # => 12
  #
  # == 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

  def is_utf8?
    case encoding
    when Encoding::UTF_8
      valid_encoding?
    when Encoding::ASCII_8BIT, Encoding::US_ASCII
      dup.force_encoding(Encoding::UTF_8).valid_encoding?
    else
      false
    end
  end
end

Version data entries

132 entries across 127 versions & 13 rubygems

Version Path
activesupport-4.2.11.3 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.11.2 lib/active_support/core_ext/string/multibyte.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/string/multibyte.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.11.1 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.11 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.10 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.10.rc1 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.9 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.9.rc2 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.9.rc1 lib/active_support/core_ext/string/multibyte.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-4.2.8/lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.8 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.8.rc1 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.7.1 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.7 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.1.16 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.1.16.rc1 lib/active_support/core_ext/string/multibyte.rb
activesupport-4.2.7.rc1 lib/active_support/core_ext/string/multibyte.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-4.2.6/lib/active_support/core_ext/string/multibyte.rb