Class: RuboCop::Cop::Style::CollectionCompact

Inherits:
Base
  • Object
show all
Extended by:
AutoCorrector
Includes:
RangeHelp
Defined in:
lib/rubocop/cop/style/collection_compact.rb

Overview

This cop checks for places where custom logic on rejection nils from arrays and hashes can be replaced with ‘Array,Hash#compact,compact!`.

Examples:

# bad
array.reject(&:nil?)
array.reject { |e| e.nil? }
array.select { |e| !e.nil? }

# good
array.compact

# bad
hash.reject!(&:nil?)
hash.reject! { |k, v| v.nil? }
hash.select! { |k, v| !v.nil? }

# good
hash.compact!

Constant Summary collapse

MSG =
'Use `%<good>s` instead of `%<bad>s`.'
RESTRICT_ON_SEND =
i[reject reject! select select!].freeze

Instance Attribute Summary

Attributes inherited from Base

#config, #processed_source

Instance Method Summary collapse

Methods included from AutoCorrector

support_autocorrect?

Methods inherited from Base

#add_global_offense, #add_offense, autocorrect_incompatible_with, badge, callbacks_needed, #callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #cop_config, #cop_name, cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, joining_forces, lint?, match?, #message, #offenses, #on_investigation_end, #on_new_investigation, #on_other_file, #parse, #ready, #relevant_file?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version

Methods included from ExcludeLimit

#exclude_limit

Methods included from AutocorrectLogic

#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #autocorrect_with_disable_uncorrectable?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?

Methods included from IgnoredNode

#ignore_node, #ignored_node?, #part_of_ignored_node?

Methods included from Util

silence_warnings

Constructor Details

This class inherits a constructor from RuboCop::Cop::Base

Instance Method Details

#on_send(node) ⇒ Object



70
71
72
73
74
75
76
77
# File 'lib/rubocop/cop/style/collection_compact.rb', line 70

def on_send(node)
  return unless (range = offense_range(node))

  good = good_method_name(node.method_name)
  message = format(MSG, good: good, bad: range.source)

  add_offense(range, message: message) { |corrector| corrector.replace(range, good) }
end

#reject_method?(node) ⇒ Object



50
51
52
53
54
55
56
57
# File 'lib/rubocop/cop/style/collection_compact.rb', line 50

def_node_matcher :reject_method?, "(block\n  (send\n    !nil? {:reject :reject!})\n  $(args ...)\n  (send\n    $(lvar _) :nil?))\n"

#reject_method_with_block_pass?(node) ⇒ Object



43
44
45
46
47
# File 'lib/rubocop/cop/style/collection_compact.rb', line 43

def_node_matcher :reject_method_with_block_pass?, "(send !nil? {:reject :reject!}\n  (block_pass\n    (sym :nil?)))\n"

#select_method?(node) ⇒ Object



60
61
62
63
64
65
66
67
68
# File 'lib/rubocop/cop/style/collection_compact.rb', line 60

def_node_matcher :select_method?, "(block\n  (send\n    !nil? {:select :select!})\n  $(args ...)\n  (send\n    (send\n      $(lvar _) :nil?) :!))\n"