method

remove_auth

remove_auth(remote)
protected

No documentation available.

# File lib/bundler/source/rubygems.rb, line 340
      def remove_auth(remote)
        if remote.user || remote.password
          remote.dup.tap {|uri| uri.user = uri.password = nil }.to_s
        else
          remote.to_s
        end
      end