Sha256: 8a4c6343db2dfdae85a3a07fccfde07f302e802ee2d31ba9a46168144dd24931
Contents?: true
Size: 488 Bytes
Versions: 18
Compression:
Stored size: 488 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
18 entries across 18 versions & 1 rubygems