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.
23 24 25 26 |
# File 'lib/jets/commands/base.rb', line 23 def perform(full_command, thor_args) config = {} # doesnt seem like config is used dispatch(nil, thor_args, nil, config) end |