method
normalize_path
v2_6_3 -
Show latest stable
- Class:
Gem::Package
normalize_path(pathname)public
No documentation available.
# File lib/rubygems/package.rb, line 472
def normalize_path(pathname)
if Gem.win_platform?
pathname.downcase
else
pathname
end
end