Class: Appfuel::Handler::Command

Inherits:
Base
  • Object
show all
Defined in:
lib/appfuel/handler/command.rb

Constant Summary

Constants included from InjectDsl

InjectDsl::TYPES

Instance Attribute Summary

Attributes inherited from Base

#data

Class Method Summary collapse

Methods inherited from Base

#build_criteria, #call, create_response, error, #error, inherited, #initialize, ok, #ok, #present, response?, response_handler, run, #search

Methods included from ValidatorDsl

#default_validator_name, #load_validator, #resolve_inputs, #skip_validation!, #skip_validation?, #validator, #validators, #validators?

Methods included from InjectDsl

#inject, #injections, #resolve_dependencies

Methods included from Application::AppContainer

#app_container, included, #qualify_container_key

Constructor Details

This class inherits a constructor from Appfuel::Handler::Base

Class Method Details

.container_class_typeObject



5
6
7
# File 'lib/appfuel/handler/command.rb', line 5

def container_class_type
  'commands'
end

.resolve_dependencies(results = Dry::Container.new) ⇒ Object



9
10
11
12
13
14
15
16
17
18
# File 'lib/appfuel/handler/command.rb', line 9

def resolve_dependencies(results = Dry::Container.new)
=begin
  super
  resolve_container(results)
  resolve_domains(results)
  resolve_db_models(results)
  resolve_repos(results)
  results
=end

end