Sha256: 3eea2a3a4e30e0fc4e3ab4c912604971da744f81d5508a5099de5a7ca5d9254d

Contents?: true

Size: 334 Bytes

Versions: 1

Compression:

Stored size: 334 Bytes

Contents

module Sentry
  module Sanitize
    class Processor
      STRING_MASK = '********'.freeze
      INT_MASK = 0
      REGEX_SPECIAL_CHARACTERS = %w(. $ ^ { [ ( | ) * + ?).freeze

      def initialize(client = nil)
        @client = client
      end

      def process(_data)
        raise NotImplementedError
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sentry-sanitize-0.4.0 lib/sentry/sanitize/processor.rb