Class: RuboCop::CLI

Inherits:
Object
  • Object
show all
Includes:
Formatter::TextUtil
Defined in:
lib/rubocop/cli.rb

Overview

The CLI is a class responsible of handling all the command line interface logic.

Defined Under Namespace

Classes: Finished

Constant Summary collapse

SKIPPED_PHASE_1 =
'Phase 1 of 2: run Metrics/LineLength cop (skipped ' \
'because the default Metrics/LineLength:Max is ' \
'overridden)'.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Formatter::TextUtil

pluralize

Constructor Details

#initializeCLI

Returns a new instance of CLI.



18
19
20
21
# File 'lib/rubocop/cli.rb', line 18

def initialize
  @options = {}
  @config_store = ConfigStore.new
end

Instance Attribute Details

#config_storeObject (readonly)

Returns the value of attribute config_store.



16
17
18
# File 'lib/rubocop/cli.rb', line 16

def config_store
  @config_store
end

#optionsObject (readonly)

Returns the value of attribute options.



16
17
18
# File 'lib/rubocop/cli.rb', line 16

def options
  @options
end

Instance Method Details

#run(args = ARGV) ⇒ Integer

Entry point for the application logic. Here we do the command line arguments processing and inspect the target files.

rubocop:disable Metrics/MethodLength

Parameters:

  • args (Array<String>) (defaults to: ARGV)

    command line arguments

Returns:

  • (Integer)

    UNIX exit code



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/rubocop/cli.rb', line 33

def run(args = ARGV)
  @options, paths = Options.new.parse(args)
  validate_options_vs_config
  act_on_options
  apply_default_formatter
  execute_runners(paths)
rescue RuboCop::Error => e
  warn Rainbow("Error: #{e.message}").red
  return 2
rescue Finished
  return 0
rescue IncorrectCopNameError => e
  warn e.message
  return 2
rescue StandardError, SyntaxError, LoadError => e
  warn e.message
  warn e.backtrace
  return 2
end

#trap_interrupt(runner) ⇒ Object

rubocop:enable Metrics/MethodLength



54
55
56
57
58
59
60
61
# File 'lib/rubocop/cli.rb', line 54

def trap_interrupt(runner)
  Signal.trap('INT') do
    exit!(1) if runner.aborting?
    runner.abort
    warn
    warn 'Exiting... Interrupt again to exit immediately.'
  end
end