Class: GitCompound::Command::Procedure::Show

Inherits:
GitCompound::Command::Procedure show all
Includes:
Element::Manifest
Defined in:
lib/git_compound/command/procedure/show.rb

Overview

Show command procedure class

Instance Method Summary collapse

Methods included from Element::Manifest

included, #initialize

Instance Method Details

#executeObject



14
15
16
17
18
# File 'lib/git_compound/command/procedure/show.rb', line 14

def execute
  @manifest.process(
    Worker::CircularDependencyChecker.new,
    Worker::PrettyPrint.new)
end

#execute!Object



9
10
11
12
# File 'lib/git_compound/command/procedure/show.rb', line 9

def execute!
  Logger.info 'Processing components list ...'
  execute
end