class Gem::PathSupport

def expand(path)

def expand(path)
  if File.directory?(path)
    File.realpath(path)
  else
    path
  end
end