class Bundler::Source::Rubygems::Remote
属性
anonymized_uri[R]
original_uri[R]
uri[R]
公共类方法
new(uri) 点击切换源代码
# File bundler/source/rubygems/remote.rb, line 9 def initialize(uri) orig_uri = uri uri = Bundler.settings.mirror_for(uri) @original_uri = orig_uri if orig_uri != uri fallback_auth = Bundler.settings.credentials_for(uri) @uri = apply_auth(uri, fallback_auth).freeze @anonymized_uri = remove_auth(@uri).freeze end
公共实例方法
cache_slug() 点击切换源代码
@return [String] 适合用作此缓存键的 slug
remote.
# File bundler/source/rubygems/remote.rb, line 22 def cache_slug @cache_slug ||= begin return nil unless SharedHelpers.md5_available? cache_uri = original_uri || uri host = cache_uri.to_s.start_with?("file://") ? nil : cache_uri.host uri_parts = [host, cache_uri.user, cache_uri.port, cache_uri.path] uri_digest = SharedHelpers.digest(:MD5).hexdigest(uri_parts.compact.join(".")) uri_parts[-1] = uri_digest uri_parts.compact.join(".") end end
to_s() 点击切换源代码
# File bundler/source/rubygems/remote.rb, line 38 def to_s "rubygems remote at #{anonymized_uri}" end
私有实例方法
apply_auth(uri, auth) 点击切换源代码
# File bundler/source/rubygems/remote.rb, line 44 def apply_auth(uri, auth) if auth && uri.userinfo.nil? uri = uri.dup uri.userinfo = auth end uri rescue Gem::URI::InvalidComponentError error_message = "Please CGI escape your usernames and passwords before " \ "setting them for authentication." raise HTTPError.new(error_message) end
remove_auth(uri) 点击切换源代码
# File bundler/source/rubygems/remote.rb, line 57 def remove_auth(uri) if uri.userinfo uri = uri.dup uri.user = uri.password = nil end uri end