Class: RuboCop::Runner

Inherits:
Object
  • Object
show all
Defined in:
lib/rubocop/runner.rb

Overview

This class handles the processing of files, which includes dealing with formatters and letting cops inspect the files.

Defined Under Namespace

Classes: InfiniteCorrectionLoop

Constant Summary collapse

MAX_ITERATIONS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

200
REDUNDANT_COP_DISABLE_DIRECTIVE_RULES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

%w[
  Lint/RedundantCopDisableDirective RedundantCopDisableDirective Lint
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options, config_store) ⇒ Runner

Returns a new instance of Runner.



59
60
61
62
63
64
65
# File 'lib/rubocop/runner.rb', line 59

def initialize(options, config_store)
  @options = options
  @config_store = config_store
  @errors = []
  @warnings = []
  @aborting = false
end

Instance Attribute Details

#aborting=(value) ⇒ Object (writeonly)

Sets the attribute aborting

Parameters:

  • value

    the value to set the attribute aborting to.



57
58
59
# File 'lib/rubocop/runner.rb', line 57

def aborting=(value)
  @aborting = value
end

#errorsObject (readonly)

Returns the value of attribute errors.



56
57
58
# File 'lib/rubocop/runner.rb', line 56

def errors
  @errors
end

#warningsObject (readonly)

Returns the value of attribute warnings.



56
57
58
# File 'lib/rubocop/runner.rb', line 56

def warnings
  @warnings
end

Class Method Details

.ruby_extractorsArray<#call>

Returns:

  • (Array<#call>)


29
30
31
# File 'lib/rubocop/runner.rb', line 29

def ruby_extractors
  @ruby_extractors ||= [default_ruby_extractor]
end

Instance Method Details

#aborting?Boolean

Returns:

  • (Boolean)


83
84
85
# File 'lib/rubocop/runner.rb', line 83

def aborting?
  @aborting
end

#run(paths) ⇒ Object



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/rubocop/runner.rb', line 67

def run(paths)
  target_files = find_target_files(paths)
  if @options[:list_target_files]
    list_files(target_files)
  else
    warm_cache(target_files) if @options[:parallel]
    inspect_files(target_files)
  end
rescue Interrupt
  self.aborting = true
  warn ''
  warn 'Exiting...'

  false
end