method
remove_auth
v2_6_3 -
Show latest stable
- Class:
Bundler::Source::Rubygems::Remote
remove_auth(uri)private
No documentation available.
# File lib/bundler/source/rubygems/remote.rb, line 58
def remove_auth(uri)
if uri.userinfo
uri = uri.dup
uri.user = uri.password = nil
end
uri
end