Module: SmartCore::Container::DefinitionDSL Private

Included in:
SmartCore::Container
Defined in:
lib/smart_core/container/definition_dsl.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Since:

  • 0.5.0

Defined Under Namespace

Modules: ClassInheritance, ClassMethods

Class Method Summary collapse

Class Method Details

.included(base_klass) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.

Parameters:

Since:

  • 0.5.0



12
13
14
15
16
17
# File 'lib/smart_core/container/definition_dsl.rb', line 12

def included(base_klass)
  base_klass.instance_variable_set(:@__commands__, SmartCore::Container::CommandSet.new)
  base_klass.singleton_class.send(:attr_reader, :__commands__)
  base_klass.extend(ClassMethods)
  base_klass.singleton_class.prepend(ClassInheritance)
end