method
expand
ruby latest stable - Class:
Gem::PathSupport
expand(path)private
No documentation available.
# File lib/rubygems/path_support.rb, line 83
def expand(path)
if File.directory?(path)
File.realpath(path)
else
path
end
end