All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
is_a
is_a? method should be used to check the type.
is_a?
var.kind_of?(Date) var.kind_of?(Integer)
var.is_a?(Date) var.is_a?(Integer)