Class: RuboCop::Cop::Lint::SendWithMixinArgument
- Extended by:
- AutoCorrector
- Includes:
- RangeHelp
- Defined in:
- lib/rubocop/cop/lint/send_with_mixin_argument.rb
Overview
Checks for ‘send`, `public_send`, and `__send__` methods when using mix-in.
‘include` and `prepend` methods were private methods until Ruby 2.0, they were mixed-in via `send` method. This cop uses Ruby 2.1 or higher style that can be called by public methods. And `extend` method that was originally a public method is also targeted for style unification.
Constant Summary collapse
- MSG =
'Use `%<method>s %<module_name>s` instead of `%<bad_method>s`.'
- MIXIN_METHODS =
%i[include prepend extend].freeze
- SEND_METHODS =
%i[send public_send __send__].freeze
- RESTRICT_ON_SEND =
SEND_METHODS
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods included from AutoCorrector
Methods inherited from Base
#active_support_extensions_enabled?, #add_global_offense, #add_offense, #always_autocorrect?, autocorrect_incompatible_with, badge, #begin_investigation, callbacks_needed, #callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #contextual_autocorrect?, #cop_config, cop_name, #cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, #inspect, joining_forces, lint?, match?, #offenses, #on_investigation_end, #on_new_investigation, #on_other_file, #parse, #parser_engine, #ready, #relevant_file?, requires_gem, #string_literals_frozen_by_default?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version
Methods included from ExcludeLimit
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
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Instance Method Details
#on_send(node) ⇒ Object
53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/rubocop/cop/lint/send_with_mixin_argument.rb', line 53 def on_send(node) send_with_mixin_argument?(node) do |method, module_names| module_names_source = module_names.map(&:source).join(', ') = (method, module_names_source, bad_location(node).source) bad_location = bad_location(node) add_offense(bad_location, message: ) do |corrector| corrector.replace(bad_location, "#{method} #{module_names_source}") end end end |
#send_with_mixin_argument?(node) ⇒ Object
46 47 48 49 50 51 |
# File 'lib/rubocop/cop/lint/send_with_mixin_argument.rb', line 46 def_node_matcher :send_with_mixin_argument?, <<~PATTERN (send (const _ _) {:#{SEND_METHODS.join(' :')}} ({sym str} $#mixin_method?) $(const _ _)+) PATTERN |