Class: Dapp::CLI::Command::Base

Inherits:
Dapp::CLI show all
Defined in:
lib/dapp/cli/command/base.rb

Constant Summary

Constants inherited from Dapp::CLI

SUBCOMMANDS

Instance Method Summary collapse

Methods included from Helper::Cli

#cli_wrapper, #composite_options, #in_validate!, #list_msg_format, #parse_options, #parse_subcommand, #prepare_subcommand, #required_argument, #run_subcommand

Methods included from Helper::Trivia

class_to_lowercase, #class_to_lowercase, #delete_file, #kwargs, #make_path, #search_file_upward

Constructor Details

#initializeBase

Returns a new instance of Base.



54
55
56
57
# File 'lib/dapp/cli/command/base.rb', line 54

def initialize
  self.class.options.merge!(Base.options)
  super()
end

Instance Method Details

#cli_options(**kvargs) ⇒ Object



74
75
76
# File 'lib/dapp/cli/command/base.rb', line 74

def cli_options(**kvargs)
  config.merge(**kvargs)
end

#run(_argv = ARGV) ⇒ Object



70
71
72
# File 'lib/dapp/cli/command/base.rb', line 70

def run(_argv = ARGV)
  raise
end

#run_dapp_command(run_method, *args) ⇒ Object



59
60
61
62
63
64
65
66
67
68
# File 'lib/dapp/cli/command/base.rb', line 59

def run_dapp_command(run_method, *args)
  dapp = ::Dapp::Dapp.new(*args)
  begin
    if run_method.nil?
      yield dapp if block_given?
    else
      dapp.public_send(run_method)
    end
  end
end