Class: SmartCore::Container::DefinitionDSL::Commands::Definition::Compose Private
- Inherits:
-
Base
- Object
- Base
- SmartCore::Container::DefinitionDSL::Commands::Definition::Compose
- Defined in:
- lib/smart_core/container/definition_dsl/commands/definition/compose.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #call(registry) ⇒ void private
- #dup ⇒ SmartCore::Container::DefinitionDSL::Commands::Definition::Compose private
- #initialize(container_klass) ⇒ void constructor private
Methods inherited from Base
inheritable=, inheritable?, #inheritable?, inherited
Constructor Details
#initialize(container_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.
15 16 17 18 19 20 21 22 |
# File 'lib/smart_core/container/definition_dsl/commands/definition/compose.rb', line 15 def initialize(container_klass) raise( SmartCore::ArgumentError, 'Container class should be a subtype of Quantum::Container' ) unless container_klass < SmartCore::Container @container_klass = container_klass end |
Instance Method Details
#call(registry) ⇒ 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.
29 30 31 |
# File 'lib/smart_core/container/definition_dsl/commands/definition/compose.rb', line 29 def call(registry) SmartCore::Container::RegistryBuilder.define(container_klass, registry) end |
#dup ⇒ SmartCore::Container::DefinitionDSL::Commands::Definition::Compose
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.
37 38 39 |
# File 'lib/smart_core/container/definition_dsl/commands/definition/compose.rb', line 37 def dup self.class.new(container_klass) end |