RuboCop::Cop
This cop checks for uses of the case equality operator(===).
# File lib/rubocop/cop/style/case_equality.rb, line 9 def on_send(node) _receiver, method_name, *_args = *node add_offense(node, :selector) if method_name == :=== end
[Validate]
Generated with the Darkfish Rdoc Generator 2.