Sha256: bd4eb0f1b61284705200cf09717204f5b5d1ef5dbd321a9392bf24b025272444

Contents?: true

Size: 761 Bytes

Versions: 32

Compression:

Stored size: 761 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # A scaffold for concrete forces.
    class Force
      attr_reader :cops

      def self.all
        @all ||= []
      end

      def self.inherited(subclass)
        all << subclass
      end

      def self.force_name
        name.split('::').last
      end

      def initialize(cops)
        @cops = cops
      end

      def name
        self.class.force_name
      end

      def run_hook(method_name, *args)
        cops.each do |cop|
          next unless cop.respond_to?(method_name)
          cop.send(method_name, *args)
        end
      end

      def investigate(_processed_source)
        # Do custom processing and invoke #run_hook at arbitrary timing.
      end
    end
  end
end

Version data entries

32 entries across 32 versions & 3 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/force.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/force.rb
rubocop-0.58.2 lib/rubocop/cop/force.rb
rubocop-0.58.1 lib/rubocop/cop/force.rb
rubocop-0.58.0 lib/rubocop/cop/force.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/force.rb
rubocop-0.57.2 lib/rubocop/cop/force.rb
rubocop-0.57.1 lib/rubocop/cop/force.rb
rubocop-0.57.0 lib/rubocop/cop/force.rb
rubocop-0.56.0 lib/rubocop/cop/force.rb
rubocop-0.55.0 lib/rubocop/cop/force.rb
rubocop-0.54.0 lib/rubocop/cop/force.rb
rubocop-0.53.0 lib/rubocop/cop/force.rb
rubocop-0.52.1 lib/rubocop/cop/force.rb
rubocop-0.52.0 lib/rubocop/cop/force.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/force.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/force.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/force.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/force.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/force.rb