class Bootsnap::LoadPathCache::RealpathCache

def realpath(caller_location, path)

def realpath(caller_location, path)
  base = File.dirname(caller_location)
  file = find_file(File.expand_path(path, base))
  dir = File.dirname(file)
  File.join(dir, File.basename(file))
end