Class: Dapp::CLI::Base

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

Overview

Base of CLI subcommands

Constant Summary

Constants inherited from Dapp::CLI

SUBCOMMANDS

Instance Method Summary collapse

Methods included from Helper::Cli

#cli_wrapper, #composite_options, #parse_options, #parse_subcommand, #prepare_subcommand, #required_argument, #run_subcommand

Methods included from Helper::Trivia

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

Constructor Details

#initializeBase

Returns a new instance of Base.



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

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

Instance Method Details

#run(argv = ARGV) ⇒ Object



59
60
61
62
# File 'lib/dapp/cli/base.rb', line 59

def run(argv = ARGV)
  self.class.parse_options(self, argv)
  Project.new(cli_options: config, dimgs_patterns: cli_arguments).public_send(class_to_lowercase)
end