Sha256: 16af2d85390a5f7e3011b7402babbbacc613bf05ccb8fef418baa65b8a866cfe

Contents?: true

Size: 719 Bytes

Versions: 7

Compression:

Stored size: 719 Bytes

Contents

# Copyright (c) 2021 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
            'rack -- don\'t let me be detected'
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
contrast-agent-4.14.1 lib/contrast/framework/rack/support.rb
contrast-agent-4.14.0 lib/contrast/framework/rack/support.rb
contrast-agent-4.13.1 lib/contrast/framework/rack/support.rb
contrast-agent-4.13.0 lib/contrast/framework/rack/support.rb
contrast-agent-4.12.0 lib/contrast/framework/rack/support.rb
contrast-agent-4.11.0 lib/contrast/framework/rack/support.rb
contrast-agent-4.10.0 lib/contrast/framework/rack/support.rb