Sha256: 463a0cd1257419b7854564a392d012e6f811dba159b387232b5085684d47e06f
Contents?: true
Size: 460 Bytes
Versions: 286
Compression:
Stored size: 460 Bytes
Contents
# frozen_string_literal: true require 'eac_ruby_utils/common_concern/module_setup' module EacRubyUtils class CommonConcern CLASS_METHODS_MODULE_NAME = 'ClassMethods' INSTANCE_METHODS_MODULE_NAME = 'InstanceMethods' attr_reader :after_callback def initialize(&after_callback) @after_callback = after_callback end def setup(a_module) ::EacRubyUtils::CommonConcern::ModuleSetup.new(self, a_module).run end end end
Version data entries
286 entries across 286 versions & 4 rubygems