Sha256: 86cc5646afc84609a3db64f830de7d5d7379e3b4aaba0435b8fd138744067dbd

Contents?: true

Size: 845 Bytes

Versions: 149

Compression:

Stored size: 845 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # This module encapsulates the ability to allow certain receivers in a cop.
    module AllowedReceivers
      def allowed_receiver?(receiver)
        receiver_name = receiver_name(receiver)

        allowed_receivers.include?(receiver_name)
      end

      def receiver_name(receiver)
        if receiver.receiver && !receiver.receiver.const_type?
          return receiver_name(receiver.receiver)
        end

        if receiver.send_type?
          if receiver.receiver
            "#{receiver_name(receiver.receiver)}.#{receiver.method_name}"
          else
            receiver.method_name.to_s
          end
        else
          receiver.source
        end
      end

      def allowed_receivers
        cop_config.fetch('AllowedReceivers', [])
      end
    end
  end
end

Version data entries

149 entries across 148 versions & 15 rubygems

Version Path
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.52.1/lib/rubocop/cop/mixin/allowed_receivers.rb
rubocop-1.54.1 lib/rubocop/cop/mixin/allowed_receivers.rb
rubocop-1.54.0 lib/rubocop/cop/mixin/allowed_receivers.rb
rubocop-1.53.1 lib/rubocop/cop/mixin/allowed_receivers.rb
rubocop-1.53.0 lib/rubocop/cop/mixin/allowed_receivers.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.52.1/lib/rubocop/cop/mixin/allowed_receivers.rb
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.52.1/lib/rubocop/cop/mixin/allowed_receivers.rb
rubocop-1.52.1 lib/rubocop/cop/mixin/allowed_receivers.rb
rubocop-1.52.0 lib/rubocop/cop/mixin/allowed_receivers.rb