Pattern: Deprecated class method call
Issue: -
This rule checks for uses of the deprecated class method usages.
# bad
File.exists?(some_path)
# good
File.exist?(some_path)
Pattern: Deprecated class method call
Issue: -
This rule checks for uses of the deprecated class method usages.
# bad
File.exists?(some_path)
# good
File.exist?(some_path)