# File lib/rack/reloader.rb, line 85 85: def figure_path(file, paths) 86: found = @cache[file] 87: found = file if !found and Pathname.new(file).absolute? 88: found, stat = safe_stat(found) 89: return found, stat if found 90: 91: paths.find do |possible_path| 92: path = ::File.join(possible_path, file) 93: found, stat = safe_stat(path) 94: return ::File.expand_path(found), stat if found 95: end 96: 97: return false, false 98: end