123456789_123456789_123456789_123456789_123456789_

Class: RuboCop::CLI::Command::ShowCops Private

Relationships & Source Files
Namespace Children
Classes:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Base
Instance Chain:
self, Base
Inherits: RuboCop::CLI::Command::Base
Defined in: lib/rubocop/cli/command/show_cops.rb

Overview

Shows the given cops, or all cops by default, and their configurations for the current directory.

Class Attribute Summary

Base - Inherited

Class Method Summary

Base - Inherited

Instance Attribute Summary

Base - Inherited

Instance Method Summary

Constructor Details

.new(env) ⇒ ShowCops

[ GitHub ]

  
# File 'lib/rubocop/cli/command/show_cops.rb', line 24

def initialize(env)
  super

  # Load the configs so the require()s are done for custom cops
  @config = @config_store.for(PathUtil.pwd)

  @cop_matchers = @options[:show_cops].map do |pattern|
    if pattern.include?('*')
      WildcardMatcher.new(pattern)
    else
      ExactMatcher.new(pattern)
    end
  end
end

Instance Method Details

#config_lines(cop) (private)

[ GitHub ]

  
# File 'lib/rubocop/cli/command/show_cops.rb', line 89

def config_lines(cop)
  cnf = @config.for_cop(cop)
  cnf.to_yaml.lines.to_a.drop(1).map { |line| "  #{line}" }
end

#cops_of_department(cops, department) (private)

[ GitHub ]

  
# File 'lib/rubocop/cli/command/show_cops.rb', line 85

def cops_of_department(cops, department)
  cops.with_department(department).sort!
end

#run

[ GitHub ]

  
# File 'lib/rubocop/cli/command/show_cops.rb', line 39

def run
  print_available_cops
end

#selected_cops_of_department(cops, department) (private)

[ GitHub ]

  
# File 'lib/rubocop/cli/command/show_cops.rb', line 77

def selected_cops_of_department(cops, department)
  cops_of_department(cops, department).select do |cop|
    @cop_matchers.any? do |matcher|
      matcher.match?(cop.cop_name)
    end
  end
end