class Bundler::Source::Path

def relative_path

def relative_path
  if path.to_s.start_with?(root_path.to_s)
    return path.relative_path_from(root_path)
  end
  path
end