Sha256: 867a60eff90de54b52ac36cb34f998d1d3b5f644118a175e91825f3f19be68a4
Contents?: true
Size: 854 Bytes
Versions: 3
Compression:
Stored size: 854 Bytes
Contents
require 'unidom/common/engine' require 'unidom/common/numeration' require 'unidom/common/yaml_helper' require 'unidom/common/engine_extension' module Unidom module Common NULL_UUID = '00000000-0000-0000-0000-000000000000'.freeze SELF = '~'.freeze #OPENED_AT = Time.utc(1970).freeze #CLOSED_AT = Time.utc(3000).freeze #FROM_DATE = '1970-01-01'.freeze #THRU_DATE = '3000-01-01'.freeze mattr_accessor :options def self.configure options = {} yield options default_options = { neglected_namespaces: [] } self.options = default_options.merge options puts 'Unidom::Common:' if self.options[:neglected_namespaces].present? puts '-- neglected_namespaces' puts " -> #{self.options[:neglected_namespaces].join ', '}" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
unidom-common-1.9.2 | lib/unidom/common.rb |
unidom-common-1.9.1 | lib/unidom/common.rb |
unidom-common-1.9 | lib/unidom/common.rb |