method
del_trailing_separator
v1_9_1_378 -
Show latest stable
- Class:
Pathname
del_trailing_separator(path)private
No documentation available.
# File lib/pathname.rb, line 396
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