Sha256: ad3eb292e1eac73173923fea8e92a044ff98e13cb055c02ea9e912a0791388f6
Contents?: true
Size: 676 Bytes
Versions: 114
Compression:
Stored size: 676 Bytes
Contents
# frozen_string_literal: true require 'eac_ruby_utils/core_ext' module Avm module Sources class Base module Organizational DEFAULT_ORGANIZATIONAL = false ORGANIZATIONAL_KEY = 'organizational' # @return [Boolean] def organizational? if organizational_entry.found? organizational_entry.value.to_bool else default_organizational end end def organizational_entry configuration.entry(ORGANIZATIONAL_KEY) end # @return [Boolean] def default_organizational DEFAULT_ORGANIZATIONAL end end end end end
Version data entries
114 entries across 114 versions & 2 rubygems