Sha256: 4ef8b1d916920266a1cc2d6d1a7ac8ae60a640739ae1fec63c8e2db0723fdfb8

Contents?: true

Size: 1.54 KB

Versions: 22

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # Identifier of all cops containing a department and cop name.
    #
    # All cops are identified by their badge. For example, the badge for
    # `RuboCop::Cop::Layout::IndentationStyle` is `Layout/IndentationStyle`.
    # Badges can be parsed as either `Department/CopName` or just `CopName` to
    # allow for badge references in source files that omit the department for
    # RuboCop to infer.
    class Badge
      attr_reader :department, :cop_name

      def self.for(class_name)
        parts = class_name.split('::')
        name_deep_enough = parts.length >= 4
        new(name_deep_enough ? parts[2..-1] : parts.last(2))
      end

      def self.parse(identifier)
        new(identifier.split('/'))
      end

      def initialize(class_name_parts)
        department_parts = class_name_parts[0...-1]
        @department = (department_parts.join('/').to_sym unless department_parts.empty?)
        @cop_name = class_name_parts.last
      end

      def ==(other)
        hash == other.hash
      end
      alias eql? ==

      def hash
        [department, cop_name].hash
      end

      def match?(other)
        cop_name == other.cop_name &&
          (!qualified? || department == other.department)
      end

      def to_s
        @to_s ||= qualified? ? "#{department}/#{cop_name}" : cop_name
      end

      def qualified?
        !department.nil?
      end

      def with_department(department)
        self.class.new([department.to_s.split('/'), cop_name].flatten)
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
rubocop-1.12.1 lib/rubocop/cop/badge.rb
rubocop-1.12.0 lib/rubocop/cop/badge.rb
rubocop-1.11.0 lib/rubocop/cop/badge.rb
rubocop-1.10.0 lib/rubocop/cop/badge.rb
rubocop-1.9.1 lib/rubocop/cop/badge.rb
rubocop-1.9.0 lib/rubocop/cop/badge.rb
rubocop-1.8.1 lib/rubocop/cop/badge.rb
rubocop-1.8.0 lib/rubocop/cop/badge.rb
rubocop-1.7.0 lib/rubocop/cop/badge.rb
rubocop-1.6.1 lib/rubocop/cop/badge.rb
rubocop-1.6.0 lib/rubocop/cop/badge.rb
rubocop-1.5.2 lib/rubocop/cop/badge.rb
rubocop-1.5.1 lib/rubocop/cop/badge.rb
rubocop-1.5.0 lib/rubocop/cop/badge.rb
rubocop-1.4.2 lib/rubocop/cop/badge.rb
rubocop-1.4.1 lib/rubocop/cop/badge.rb
rubocop-1.4.0 lib/rubocop/cop/badge.rb
rubocop-1.3.1 lib/rubocop/cop/badge.rb
rubocop-1.3.0 lib/rubocop/cop/badge.rb
rubocop-1.2.0 lib/rubocop/cop/badge.rb