Sha256: 803be6f422b49e623a64e37cb83a4ce677ead0cc7be83c24a0001c7e1b4ca559

Contents?: true

Size: 741 Bytes

Versions: 21

Compression:

Stored size: 741 Bytes

Contents

module ActiveSupport
  module JSON
    module Encoding
      ESCAPED_CHARS = {
        "\010" =>  '\b',
        "\f"   =>  '\f',
        "\n"   =>  '\n',
        "\r"   =>  '\r',
        "\t"   =>  '\t',
        '"'    =>  '\"',
        '\\'   =>  '\\\\',
        '>'    =>  '\u003E',
        '<'    =>  '\u003C',
        '&'    =>  '\u0026'
      }
    end
  end
end

class String
  def to_json(options = nil) #:nodoc:
    '"' + gsub(/[\010\f\n\r\t"\\><&]/) { |s|
      ActiveSupport::JSON::Encoding::ESCAPED_CHARS[s]
    }.gsub(/([\xC0-\xDF][\x80-\xBF]|
             [\xE0-\xEF][\x80-\xBF]{2}|
             [\xF0-\xF7][\x80-\xBF]{3})+/nx) { |s|
      s.unpack("U*").pack("n*").unpack("H*")[0].gsub(/.{4}/, '\\\\u\&')
    } + '"'
  end
end

Version data entries

21 entries across 21 versions & 4 rubygems

Version Path
activesupport-2.0.0 lib/active_support/json/encoders/string.rb
activesupport-2.0.1 lib/active_support/json/encoders/string.rb
activesupport-2.0.5 lib/active_support/json/encoders/string.rb
activesupport-2.0.4 lib/active_support/json/encoders/string.rb
activesupport-2.0.2 lib/active_support/json/encoders/string.rb
radiant-0.6.5.1 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
radiant-0.6.5 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
radiant-0.6.6 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
radiant-0.6.7 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
radiant-0.6.9 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
radiant-0.6.8 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
spree-0.0.9 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
spree-0.2.0 vendor/rails/activesupport/lib/active_support/json/encoders/string.rb
swivel-0.0.149 vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
swivel-0.0.150 vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
swivel-0.0.155 vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
swivel-0.0.152 vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
swivel-0.0.160 vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
swivel-0.0.156 vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb
swivel-0.0.157 vendor/activesupport-2.0.2-/lib/active_support/json/encoders/string.rb