# File lib/rack/reloader.rb, line 97 def safe_stat(file) return unless file stat = ::File.stat(file) return file, stat if stat.file? rescue Errno::ENOENT, Errno::ENOTDIR @cache.delete(file) and false end