Class: Dapp::CLI::Stages::Pull

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

Overview

stages pull subcommand

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

Constructor Details

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

Instance Method Details

#run(argv = ARGV) ⇒ Object



20
21
22
23
24
# File 'lib/dapp/cli/stages/pull.rb', line 20

def run(argv = ARGV)
  self.class.parse_options(self, argv)
  repo = self.class.required_argument(self)
  Project.new(cli_options: config, apps_patterns: cli_arguments).stages_pull(repo)
end