Sha256: 39f8f59c4402f12fc6176a0867ceb19a0bff9c5179db5c6f398ad09be0bfe473
Contents?: true
Size: 498 Bytes
Versions: 18
Compression:
Stored size: 498 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 # A simple wrapper around a Module and a call to its name, used to avoid # calling the Module#name method and generating extra Strings class ModuleData attr_reader :mod, :name def initialize mod, name = nil @mod = mod @name = name || mod.cs__name end end end end
Version data entries
18 entries across 18 versions & 1 rubygems