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(**kwargs) ⇒ Object



81
82
83
# File 'lib/dapp/cli/command/base.rb', line 81

def cli_options(**kwargs)
  config.merge(dapp_command: run_method, **kwargs)
end

#run(_argv = ARGV) ⇒ Object



77
78
79
# File 'lib/dapp/cli/command/base.rb', line 77

def run(_argv = ARGV)
  raise
end

#run_dapp_command(run_method, *args) ⇒ Object



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

def run_dapp_command(run_method, *args)
  dapp = ::Dapp::Dapp.new(*args)
  ::Dapp::CLI.dapp_object = dapp
  dapp.sentry_message("Manual usage: `#{self.run_method}` command") unless ENV['CI']

  begin
    if block_given?
      yield dapp
    elsif !run_method.nil?
      dapp.public_send(run_method)
    end
  end
end

#run_methodObject



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

def run_method
  class_to_lowercase
end