Class: ConvenientService::Support::DependencyContainer::Commands::CreateMethodsModule Private
- Inherits:
-
Command
- Object
- Command
- ConvenientService::Support::DependencyContainer::Commands::CreateMethodsModule
- Defined in:
- lib/convenient_service/support/dependency_container/commands/create_methods_module.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 ⇒ Module private
Methods inherited from Command
Constructor Details
This class inherits a constructor from ConvenientService::Support::Command
Instance Method Details
#call ⇒ Module
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.
16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/convenient_service/support/dependency_container/commands/create_methods_module.rb', line 16 def call ::Module.new do class << self ## # @return namespaces [ConvenientService::Support::DependencyContainer::Entities::NamespaceCollection] # def namespaces @namespaces ||= Entities::NamespaceCollection.new end end end end |