Sha256: 24135974ca1f801aeece445279cbc03a41557bddebb565ff5f547dd89c45e38f
Contents?: true
Size: 720 Bytes
Versions: 16
Compression:
Stored size: 720 Bytes
Contents
require File.join(File.dirname(__FILE__), 'string/conversions') require File.join(File.dirname(__FILE__), 'string/iterators') class String #:nodoc: include ROXML::CoreExtensions::String::Conversions include ROXML::CoreExtensions::String::Iterators end class Object #:nodoc: # Deprecated in favor of explicit #to_s.to_utf def to_utf ActiveSupport::Deprecation.warn "This method will be removed from Object please use String#to_utf instead via explicit #to_s" to_s.to_utf end # Deprecated in favor of explicit #to_s.to_latin def to_latin ActiveSupport::Deprecation.warn "This method will be removed from Object please use String#to_latin instead via explicit #to_s" to_s.to_latin end end
Version data entries
16 entries across 16 versions & 2 rubygems