2018-11-09 13:39:43 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-12 10:31:36 -04:00
|
|
|
# Gitaly note: JV: no RPC's here.
|
|
|
|
|
2017-01-04 13:43:06 -05:00
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
class PathHelper
|
|
|
|
class << self
|
|
|
|
def normalize_path(filename)
|
|
|
|
# Strip all leading slashes so that //foo -> foo
|
2018-05-18 09:07:06 -04:00
|
|
|
filename = filename.sub(%r{\A/*}, '')
|
2017-01-04 13:43:06 -05:00
|
|
|
|
|
|
|
# Expand relative paths (e.g. foo/../bar)
|
|
|
|
filename = Pathname.new(filename)
|
|
|
|
filename.relative_path_from(Pathname.new(''))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|