Sha256: db87c0a25ca46bcb3f829283e0a5dbcaaa6735e65a68c7d41002dbbd175878c4
Contents?: true
Size: 514 Bytes
Versions: 18
Compression:
Stored size: 514 Bytes
Contents
# Copyright (c) 2023 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, :mod_name def initialize mod, mod_name = nil @mod = mod @mod_name = mod_name || mod.cs__name end end end end
Version data entries
18 entries across 18 versions & 1 rubygems