Sha256: bb4aff9b145b327c5dfd134af5fc0e2134a216e04ee87981ac4a034cb5e84a41
Contents?: true
Size: 733 Bytes
Versions: 57
Compression:
Stored size: 733 Bytes
Contents
require 'active_support/core_ext/module/delegation' require 'active_support/core_ext/module/attribute_accessors' module Cmor module Tags module Backend module Configuration def configure yield self end mattr_accessor :registered_controllers do -> { [] } end mattr_accessor :registered_services do -> { [] } end mattr_accessor(:taggable_class_names) { [] } mattr_accessor(:tagger_class_names) { [] } def self.taggable_classes @@taggable_class_names.map(&:constantize) end def self.tagger_classes @@tagger_class_names.map(&:constantize) end end end end end
Version data entries
57 entries across 57 versions & 1 rubygems