Sha256: ea50596ba118998ce67293bc59a9e6d85138e4b920064513ec33b6e4e636d225
Contents?: true
Size: 850 Bytes
Versions: 3
Compression:
Stored size: 850 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' end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
contrast-agent-6.11.0 | lib/contrast/agent/assess.rb |
contrast-agent-6.10.0 | lib/contrast/agent/assess.rb |
contrast-agent-6.9.0 | lib/contrast/agent/assess.rb |