method

expand

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