Sha256: 70b133a030dd03653a0da7df32a9544d8b883dc08a0b22544b2c6315add2a34a

Contents?: true

Size: 1.3 KB

Versions: 16

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop enforces the use of consistent method names
      # from the Enumerable module.
      #
      # Unfortunately we cannot actually know if a method is from
      # Enumerable or not (static analysis limitation), so this cop
      # can yield some false positives.
      class CollectionMethods < Cop
        include MethodPreference

        MSG = 'Prefer `%<prefer>s` over `%<current>s`.'.freeze

        def on_block(node)
          check_method_node(node.send_node)
        end

        def on_send(node)
          return unless node.arguments.one? &&
                        node.first_argument.block_pass_type?

          check_method_node(node)
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.replace(node.loc.selector,
                              preferred_method(node.loc.selector.source))
          end
        end

        private

        def message(node)
          format(MSG,
                 prefer: preferred_method(node.method_name),
                 current: node.method_name)
        end

        def check_method_node(node)
          return unless preferred_methods[node.method_name]

          add_offense(node, location: :selector)
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
rubocop-0.59.2 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.59.1 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.59.0 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.58.2 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.58.1 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.58.0 lib/rubocop/cop/style/collection_methods.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/style/collection_methods.rb
rubocop-0.57.2 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.57.1 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.57.0 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.56.0 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.55.0 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.54.0 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.53.0 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.52.1 lib/rubocop/cop/style/collection_methods.rb
rubocop-0.52.0 lib/rubocop/cop/style/collection_methods.rb