Sha256: c6c7c93a0f6c3bf40a986ea76427f61b58c307a0b4d949e068ebe31372875985

Contents?: true

Size: 710 Bytes

Versions: 3

Compression:

Stored size: 710 Bytes

Contents

require_relative 'command'
require_relative '../examiner'

module Reek
  module CLI
    #
    # A command to collect smells from a set of sources and write them out in
    # text report format.
    #
    # @api private
    class ReekCommand < Command
      def execute(app)
        options.sources.each do |source|
          reporter.add_examiner Examiner.new(source, smell_names, configuration: app.configuration)
        end
        reporter.smells? ? app.report_smells : app.report_success
        reporter.show
      end

      private

      def reporter
        @reporter ||= options.reporter
      end

      def smell_names
        @smell_names ||= options.smells_to_detect
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reek-3.3.1 lib/reek/cli/reek_command.rb
reek-3.3.0 lib/reek/cli/reek_command.rb
reek-3.2 lib/reek/cli/reek_command.rb