Sha256: 758f127271b3a836ff52980dc4597fa89800df7edbf3a82089d9990ce500db09

Contents?: true

Size: 949 Bytes

Versions: 2

Compression:

Stored size: 949 Bytes

Contents

# Copyright (c) 2021 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/rewriter'
      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

2 entries across 2 versions & 1 rubygems

Version Path
contrast-agent-4.6.0 lib/contrast/agent/assess.rb
contrast-agent-4.5.0 lib/contrast/agent/assess.rb