Class: Meta::Utils::Path

Inherits:
Object
  • Object
show all
Defined in:
lib/meta/utils/path.rb

Class Method Summary collapse

Class Method Details

.join(*parts) ⇒ Object

合并两个 path. 有且只有一个例外,如果 p1 或 p2 其中之一为 ‘/’,则返回另一个。



18
19
20
21
22
# File 'lib/meta/utils/path.rb', line 18

def join(*parts)
  parts = parts.map { |p| (p || '').delete_prefix('/').delete_suffix('/') }
  parts = parts.reject { |p| p.nil? || p.empty? }
  '/' + parts.join('/')
end

.normalize_path(path) ⇒ Object

规范化 path 结构,确保 path 以 ‘/’ 开头,不以 ‘/’ 结尾。 仅有一个例外,如果 path 为 nil 或空字符串,则返回空字符串 ”.



10
11
12
13
14
15
# File 'lib/meta/utils/path.rb', line 10

def normalize_path(path)
  path = '/' unless path
  path = '/' + path unless path.start_with?('/')
  path = path.delete_suffix('/') if path.end_with?('/')
  path
end