Class: Dapp::CLI::Stages::CleanupLocal

Inherits:
Base show all
Defined in:
lib/dapp/cli/stages/cleanup_local.rb

Overview

stages cleanup local subcommand

Direct Known Subclasses

CleanupRepo

Constant Summary

Constants inherited from Dapp::CLI

Dapp::CLI::SUBCOMMANDS

Instance Method Summary collapse

Methods inherited from Base

#initialize

Methods inherited from Dapp::CLI

#initialize

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

This class inherits a constructor from Dapp::CLI::Base

Instance Method Details

#repoObject



34
35
36
# File 'lib/dapp/cli/stages/cleanup_local.rb', line 34

def repo
  config[:proper_repo_cache] ? self.class.required_argument(self) : nil
end

#run(argv = ARGV) ⇒ Object



28
29
30
31
32
# File 'lib/dapp/cli/stages/cleanup_local.rb', line 28

def run(argv = ARGV)
  self.class.parse_options(self, argv)
  repository = repo
  Project.new(cli_options: config, dimgs_patterns: cli_arguments).send(run_method, repository)
end

#run_methodObject



38
39
40
# File 'lib/dapp/cli/stages/cleanup_local.rb', line 38

def run_method
  :stages_cleanup_local
end