eiwi1101/yapfac

View on GitHub
lib/yapfac/apache.rb

Summary

Maintainability
A
0 mins
Test Coverage

File.exists? is deprecated in favor of File.exist?.
Open

    return nil unless File.exists? file
Severity: Minor
Found in lib/yapfac/apache.rb by rubocop

This cop checks for uses of the deprecated class method usages.

Example:

# bad

File.exists?(some_path)

Example:

# good

File.exist?(some_path)

There are no issues that match your filters.

Category
Status