Class: RuboCop::Cop::CableReady::Base Abstract
- Inherits:
-
Base
- Object
- Base
- RuboCop::Cop::CableReady::Base
- Defined in:
- lib/rubocop/cop/cable_ready/base.rb
Overview
This class is abstract.
parent class to CableReady cops
Direct Known Subclasses
ApplicationRecordEnableUpdates, BroadcasterControllerAction, UnusedCableReadyCall
Class Method Summary collapse
-
.inherited(subclass) ⇒ Object
Invoke the original inherited hook so our cops are recognized.
Class Method Details
.inherited(subclass) ⇒ Object
Invoke the original inherited hook so our cops are recognized
11 12 13 |
# File 'lib/rubocop/cop/cable_ready/base.rb', line 11 def self.inherited(subclass) # rubocop:disable Lint/MissingSuper RuboCop::Cop::Base.inherited(subclass) end |