Class: RuboCop::Runner
- Inherits:
-
Object
- Object
- RuboCop::Runner
- 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
Instance Attribute Summary collapse
-
#aborting ⇒ Object
(also: #aborting?)
readonly
Returns the value of attribute aborting.
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#warnings ⇒ Object
readonly
Returns the value of attribute warnings.
Instance Method Summary collapse
- #abort ⇒ Object
-
#initialize(options, config_store) ⇒ Runner
constructor
A new instance of Runner.
- #run(paths) ⇒ Object
Constructor Details
#initialize(options, config_store) ⇒ Runner
Returns a new instance of Runner.
22 23 24 25 26 27 28 |
# File 'lib/rubocop/runner.rb', line 22 def initialize(, config_store) @options = @config_store = config_store @errors = [] @warnings = [] @aborting = false end |
Instance Attribute Details
#aborting ⇒ Object (readonly) Also known as: aborting?
Returns the value of attribute aborting.
19 20 21 |
# File 'lib/rubocop/runner.rb', line 19 def aborting @aborting end |
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
19 20 21 |
# File 'lib/rubocop/runner.rb', line 19 def errors @errors end |
#warnings ⇒ Object (readonly)
Returns the value of attribute warnings.
19 20 21 |
# File 'lib/rubocop/runner.rb', line 19 def warnings @warnings end |
Instance Method Details
#abort ⇒ Object
39 40 41 |
# File 'lib/rubocop/runner.rb', line 39 def abort @aborting = true end |
#run(paths) ⇒ Object
30 31 32 33 34 35 36 37 |
# File 'lib/rubocop/runner.rb', line 30 def run(paths) target_files = find_target_files(paths) if @options[:list_target_files] list_files(target_files) else inspect_files(target_files) end end |