class EacRubyUtils::CommonConcern

Constants

CLASS_METHODS_MODULE_NAME
INSTANCE_METHODS_MODULE_NAME

Attributes

after_callback[R]

Public Class Methods

new(&after_callback) click to toggle source
# File lib/eac_ruby_utils/common_concern.rb, line 12
def initialize(&after_callback)
  @after_callback = after_callback
end

Public Instance Methods

setup(a_module) click to toggle source
# File lib/eac_ruby_utils/common_concern.rb, line 16
def setup(a_module)
  ::EacRubyUtils::CommonConcern::ModuleSetup.new(self, a_module).run
end