class RuboCop::SketchUp::WorkaroundCop
Clone of the the normal RuboCop::Cop::Cop class so we can rewrite the inherited method without breaking functionality
Public Class Methods
<(other)
click to toggle source
Special case `Module#<` so that the rspec support rubocop exports is compatible with our subclass
Calls superclass method
# File lib/rubocop/sketchup/cop.rb, line 20 def self.<(other) other.equal?(RuboCop::Cop::Cop) || super end
inherited(*)
click to toggle source
# File lib/rubocop/sketchup/cop.rb, line 15 def inherited(*) end