Sha256: 704d33b598cdbc0a408a209cc5fcc21e5e5318ebc4c4a126064e51879783585c

Contents?: true

Size: 711 Bytes

Versions: 5

Compression:

Stored size: 711 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.
      module Support
        extend Contrast::Framework::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

5 entries across 5 versions & 1 rubygems

Version Path
contrast-agent-4.4.1 lib/contrast/framework/rack/support.rb
contrast-agent-4.4.0 lib/contrast/framework/rack/support.rb
contrast-agent-4.3.2 lib/contrast/framework/rack/support.rb
contrast-agent-4.3.1 lib/contrast/framework/rack/support.rb
contrast-agent-4.3.0 lib/contrast/framework/rack/support.rb