Sha256: 98a8cd33033e8e90af2e5604e0a4282727c38ce25cf06a54a5967acc3a2e595b

Contents?: true

Size: 458 Bytes

Versions: 2

Compression:

Stored size: 458 Bytes

Contents

module GitCompound
  module Command
    module Procedure
      # Show command procedure class
      #
      class Show < Procedure
        include Element::Manifest

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

        step :pretty_print do
          @manifest.process(
            Worker::CircularDependencyChecker.new,
            Worker::PrettyPrint.new)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
git_compound-0.2.2 lib/git_compound/command/procedure/show.rb
git_compound-0.2.1 lib/git_compound/command/procedure/show.rb