Sha256: fbc261597cc68c735dc3f575f9ec6f63bb5b016b12b0d972a39dab43fa65c8bb

Contents?: true

Size: 749 Bytes

Versions: 24

Compression:

Stored size: 749 Bytes

Contents

# encoding: utf-8

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

24 entries across 24 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/cop/force.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/cop/force.rb
rubocop-0.35.1 lib/rubocop/cop/force.rb
rubocop-0.35.0 lib/rubocop/cop/force.rb
rubocop-0.34.2 lib/rubocop/cop/force.rb
rubocop-0.34.1 lib/rubocop/cop/force.rb
rubocop-0.34.0 lib/rubocop/cop/force.rb
rubocop-0.33.0 lib/rubocop/cop/force.rb
rubocop-0.32.1 lib/rubocop/cop/force.rb
rubocop-0.32.0 lib/rubocop/cop/force.rb
rubocop-0.31.0 lib/rubocop/cop/force.rb
rubocop-0.30.1 lib/rubocop/cop/force.rb
rubocop-0.30.0 lib/rubocop/cop/force.rb
rubocop-0.29.1 lib/rubocop/cop/force.rb
rubocop-0.29.0 lib/rubocop/cop/force.rb
rubocop-0.28.0 lib/rubocop/cop/force.rb
rubocop-0.27.1 lib/rubocop/cop/force.rb
rubocop-0.27.0 lib/rubocop/cop/force.rb
rubocop-0.26.1 lib/rubocop/cop/force.rb
rubocop-0.26.0 lib/rubocop/cop/force.rb