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