Sha256: 5219a9b225c1e277b4705c1269a1ad6c83549032cb011ea40516e607ff6033c8
Contents?: true
Size: 488 Bytes
Versions: 11
Compression:
Stored size: 488 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 Config # This is the wrapper for the default values in the configurations, used to # differentiate between nil or false defaults and things being set # explicitly to false. class DefaultValue attr_reader :value def initialize value @value = value end end end end
Version data entries
11 entries across 11 versions & 1 rubygems