debian-mirror-gitlab/lib/gitlab/git/path_helper.rb

19 lines
425 B
Ruby
Raw Normal View History

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