Sha256: ddd29fc09cf9964e5dabc331a99645b5c4f80aa0ea0ee6ffd9542b99d2578f32

Contents?: true

Size: 734 Bytes

Versions: 6

Compression:

Stored size: 734 Bytes

Contents

module Mutant
  class Reporter
    class CLI
      class Printer
        # Printer for mutation config
        class Config < self

          # Report configuration
          #
          # @param [Mutant::Config] config
          #
          # @return [undefined]
          def run
            info 'Mutant configuration:'
            info 'Matcher:         %s',      object.matcher.inspect
            info 'Integration:     %s',      object.integration
            info 'Jobs:            %d',      object.jobs
            info 'Includes:        %s',      object.includes
            info 'Requires:        %s',      object.requires
          end

        end # Config
      end # Printer
    end # CLI
  end # Reporter
end # Mutant

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mutant-0.8.16 lib/mutant/reporter/cli/printer/config.rb
mutant-0.8.15 lib/mutant/reporter/cli/printer/config.rb
mutant-0.8.14 lib/mutant/reporter/cli/printer/config.rb
mutant-0.8.13 lib/mutant/reporter/cli/printer/config.rb
mutant-0.8.12 lib/mutant/reporter/cli/printer/config.rb
mutant-0.8.11 lib/mutant/reporter/cli/printer/config.rb