Method: Jets::Commands::Base.perform

Defined in:
lib/jets/commands/base.rb

.perform(full_command, thor_args) ⇒ Object

thor_args is an array of commands. Examples:

["help"]
["dynamodb:migrate"]

Same signature as RakeCommand.perform. Not using full_command.



25
26
27
28
# File 'lib/jets/commands/base.rb', line 25

def perform(full_command, thor_args)
  config = {} # doesnt seem like config is used
  dispatch(nil, thor_args, nil, config)
end