Class: RuboCop::Formatter::SimpleTextFormatter::Report

Inherits:
Object
  • Object
show all
Includes:
Colorizable, TextUtil
Defined in:
lib/rubocop/formatter/simple_text_formatter.rb

Overview

A helper class for building the report summary text.

Instance Method Summary collapse

Methods included from Colorizable

#colorize

Methods included from TextUtil

pluralize

Constructor Details

#initialize(file_count, offense_count, correction_count, rainbow) ⇒ Report

Returns a new instance of Report.



96
97
98
99
100
101
# File 'lib/rubocop/formatter/simple_text_formatter.rb', line 96

def initialize(file_count, offense_count, correction_count, rainbow)
  @file_count = file_count
  @offense_count = offense_count
  @correction_count = correction_count
  @rainbow = rainbow
end

Instance Method Details

#summaryObject



103
104
105
106
107
108
109
# File 'lib/rubocop/formatter/simple_text_formatter.rb', line 103

def summary
  if @correction_count > 0
    "#{files} inspected, #{offenses} detected, #{corrections} corrected"
  else
    "#{files} inspected, #{offenses} detected"
  end
end