Sha256: b7de1a4bc25c24cf3fa3ae4f13a6d311f67c26d2a9272c0edc208681e8e2c11d
Contents?: true
Size: 590 Bytes
Versions: 13
Compression:
Stored size: 590 Bytes
Contents
# frozen_string_literal: true module MadFlatter # Defines the metadata option hash key and acceptable hash key values. module MetadataOptionable # The option hash key for this option. OPTION_METADATA = :metadata # The valid option values for this option key. OPTION_METADATA_INCLUDE = true OPTION_METADATA_EXCLUDE = false # The default value for this option. OPTION_METADATA_DEFAULT = OPTION_METADATA_EXCLUDE # The valid option key values for this option. OPTION_METADATA_VALUES = [OPTION_METADATA_INCLUDE, OPTION_METADATA_EXCLUDE].freeze end end
Version data entries
13 entries across 13 versions & 1 rubygems