Class: CC::CLI::Engines::Install

Inherits:
EngineCommand show all
Defined in:
lib/cc/cli/engines/install.rb

Constant Summary collapse

SHORT_HELP =
"Pull the latest images for enabled engines in your configuration".freeze
ImagePullFailure =
Class.new(StandardError)

Constants inherited from Command

Command::CODECLIMATE_YAML, Command::NAMESPACE

Instance Method Summary collapse

Methods inherited from EngineCommand

#engine_registry

Methods inherited from Command

[], abstract!, abstract?, all, command_name, #execute, help, inherited, #initialize, short_help, synopsis

Methods included from Output

#colorize, #fatal, #rainbow, #say, #success, #terminal, #warn

Constructor Details

This class inherits a constructor from CC::CLI::Command

Instance Method Details

#runObject



9
10
11
12
# File 'lib/cc/cli/engines/install.rb', line 9

def run
  say "Pulling docker images."
  pull_docker_images
end