Sha256: cb591fce48a4ef1733e4e54e4dc3b535e17e199efbd75a6ffd9bb75fe397bc73

Contents?: true

Size: 642 Bytes

Versions: 6480

Compression:

Stored size: 642 Bytes

Contents

# frozen_string_literal: true
module Ethon
  class Easy # :nodoc:

    # This module contains small helpers.
    #
    # @api private
    module Util

      # Escapes zero bytes in strings.
      #
      # @example Escape zero bytes.
      #   Util.escape_zero_byte("1\0")
      #   #=> "1\\0"
      #
      # @param [ Object ] value The value to escape.
      #
      # @return [ String, Object ] Escaped String if
      #   zero byte found, original object if not.
      def escape_zero_byte(value)
        return value unless value.to_s.include?(0.chr)
        value.to_s.gsub(0.chr, '\\\0')
      end

      extend self
    end
  end
end

Version data entries

6,480 entries across 6,478 versions & 22 rubygems

Version Path
ory-client-0.0.1.alpha75 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha74 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha73 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha72 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha71 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha70 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha69 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha68 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha67 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha66 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-oathkeeper-client-0.38.19.beta1 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-oathkeeper-client-0.38.18.beta1 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-oathkeeper-client-0.38.17.beta1 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
avalara_sdk-2.4.7 vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha58 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha57 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha56 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha55 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha54 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb
ory-client-0.0.1.alpha53 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb