method
del_trailing_separator
v1_9_3_392 -
Show latest stable
- Class:
Pathname
del_trailing_separator(path)private
No documentation available.
# File ext/pathname/lib/pathname.rb, line 143
def del_trailing_separator(path)
if r = chop_basename(path)
pre, basename = r
pre + basename
elsif /#{SEPARATOR_PAT}+\z/ =~ path
$` + File.dirname(path)[/#{SEPARATOR_PAT}*\z/]
else
path
end
end