Sha256: 849b9382f582ed773e55d81b4bae0693ef4b1850ea6132cbf8deb4e83bd60a2a
Contents?: true
Size: 902 Bytes
Versions: 11
Compression:
Stored size: 902 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/agent/patching/policy/after_load_patch' module Contrast module Framework module Rack module Patch # Extension point allowing for the registration of Patches required to # support the Rack framework. module Support # (See BaseSupport#after_load_patches) def after_load_patches Set.new([ Contrast::Agent::Patching::Policy::AfterLoadPatch.new( 'Rack::Session::Cookie', 'contrast/framework/rack/patch/session_cookie', instrumenting_module: 'Contrast::Framework::Rack::Patch::SessionCookie') ]) end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems