class File

Public Class Methods

realpath(path) click to toggle source
# File lib/knj/erb/erb.rb, line 3
def File::realpath(path)
  if File.symlink?(path)
    return self.realpath(File.readlink(path))
  end
  
  return path
end