Sha256: 36b02ea834bd7332373e986baa8e05e7e5fad7d26d98337b822f09de48c767dc
Contents?: true
Size: 909 Bytes
Versions: 21
Compression:
Stored size: 909 Bytes
Contents
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Agent # This is the base module for our assess classes. It is intended to # facilitate the patching of the application for Assess functionality. Any # class under this namespace should be required here, providing a single # point of require for this functionality. module Assess require 'contrast/agent/assess/tracker' require 'contrast/agent/module_data' require 'contrast/agent/assess/policy/preshift' # Dynamic Sources require 'contrast/agent/assess/policy/dynamic_source_factory' # reporting / tracking require 'contrast/agent/assess/properties' require 'contrast/agent/assess/tag' require 'contrast/agent/assess/events/event_factory' end end end
Version data entries
21 entries across 21 versions & 1 rubygems