Sha256: afe69d1ab3e66d47bd1bbdc9074c39ed1be4f4b9d616f7c8fa0d46ee288ccda7

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

require 'forwardable'
require_relative 'input'
require_relative '../report'

module Reek
  module CLI
    #
    # Interprets the options set from the command line
    #
    class OptionInterpreter
      include Input
      extend Forwardable
      def_delegators :options, :smells_to_detect, :success_exit_code, :failure_exit_code

      def initialize(options)
        @options = options
        @argv = options.argv
      end

      def reporter
        @reporter ||=
          report_class.new(
            warning_formatter: warning_formatter,
            report_formatter: Report::Formatter,
            sort_by_issue_count: sort_by_issue_count,
            heading_formatter: heading_formatter)
      end

      def report_class
        Report.report_class(options.report_format)
      end

      def warning_formatter
        warning_formatter_class.new(location_formatter: location_formatter)
      end

      def warning_formatter_class
        Report.warning_formatter_class(options.show_links ? :wiki_links : :simple)
      end

      def location_formatter
        Report.location_formatter(options.location_format)
      end

      def heading_formatter
        Report.heading_formatter(options.show_empty ? :verbose : :quiet)
      end

      def sort_by_issue_count
        options.sorting == :smelliness
      end

      private

      attr_reader :argv, :options
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
reek-3.11 lib/reek/cli/option_interpreter.rb
reek-3.10.2 lib/reek/cli/option_interpreter.rb