Sha256: 90a61ac4096dbd65291113415a6357d884e8c5597e30b7f0bcf4a9b53ca52f04

Contents?: true

Size: 676 Bytes

Versions: 6

Compression:

Stored size: 676 Bytes

Contents

# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

require 'contrast/framework/base_support'
require 'contrast/framework/rack/patch/support'

module Contrast
  module Framework
    module Rack
      # Used when Rack is present to define framework specific behavior. For
      # now, the only part of this implemented is the Patch Support.
      class Support < BaseSupport
        extend Contrast::Framework::Rack::Patch::Support
        class << self
          def detection_class
            'don\'t let me be detected'
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
contrast-agent-4.2.0 lib/contrast/framework/rack/support.rb
contrast-agent-4.1.0 lib/contrast/framework/rack/support.rb
contrast-agent-4.0.0 lib/contrast/framework/rack/support.rb
contrast-agent-3.16.0 lib/contrast/framework/rack/support.rb
contrast-agent-3.15.0 lib/contrast/framework/rack/support.rb
contrast-agent-3.14.0 lib/contrast/framework/rack/support.rb