Sha256: 918f46bbc9ff39cb3f5a272932f6c3bd15afdf17391ba63ad7d5fc552ecdc310
Contents?: true
Size: 671 Bytes
Versions: 26
Compression:
Stored size: 671 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Style # This cop checks for the use of the send method. # # @example # # bad # Foo.send(:bar) # quuz.send(:fred) # # # good # Foo.__send__(:bar) # quuz.public_send(:fred) class Send < Cop MSG = 'Prefer `Object#__send__` or `Object#public_send` to ' \ '`send`.'.freeze def_node_matcher :sending?, '(send _ :send ...)' def on_send(node) return unless sending?(node) && node.arguments? add_offense(node, location: :selector) end end end end end
Version data entries
26 entries across 24 versions & 3 rubygems