Sha256: 83ab88daf83d9007328baf023de42ed7a6041829d0193adfdef4a9e828663dc7
Contents?: true
Size: 487 Bytes
Versions: 7
Compression:
Stored size: 487 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 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
7 entries across 7 versions & 1 rubygems