Sha256: 0570656f3454ad4fe41af48844a96ec1e4f6a30eb0b3c124f2f741b670a81aac
Contents?: true
Size: 657 Bytes
Versions: 122
Compression:
Stored size: 657 Bytes
Contents
# encoding: utf-8 class String #:nodoc: def to_crlf to_str.gsub(/\n|\r\n|\r/) { "\r\n" } end def to_lf to_str.gsub(/\n|\r\n|\r/) { "\n" } end unless String.instance_methods(false).map {|m| m.to_sym}.include?(:blank?) def blank? self !~ /\S/ end end unless method_defined?(:ascii_only?) # Provides all strings with the Ruby 1.9 method of .ascii_only? and # returns true or false US_ASCII_REGEXP = %Q{\x00-\x7f} def ascii_only? !(self =~ /[^#{US_ASCII_REGEXP}]/) end end def not_ascii_only? !ascii_only? end unless method_defined?(:bytesize) alias :bytesize :length end end
Version data entries
122 entries across 110 versions & 12 rubygems