Sha256: de60db18b4f49e8e91cfcabd37bf92d353aa6306a2626c2304d0eff6ba952506

Contents?: true

Size: 949 Bytes

Versions: 2

Compression:

Stored size: 949 Bytes

Contents

# Copyright (c) 2020 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.4.1 lib/contrast/agent/assess.rb
contrast-agent-4.4.0 lib/contrast/agent/assess.rb