2017-09-10 17:25:29 +05:30
|
|
|
# Gitaly note: JV: no RPC's here.
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
class PathHelper
|
|
|
|
class << self
|
|
|
|
def normalize_path(filename)
|
|
|
|
# Strip all leading slashes so that //foo -> foo
|
2018-03-17 18:26:18 +05:30
|
|
|
filename[%r{^/*}] = ''
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
# Expand relative paths (e.g. foo/../bar)
|
|
|
|
filename = Pathname.new(filename)
|
|
|
|
filename.relative_path_from(Pathname.new(''))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|