Class: Bundler::Fetcher::Index
- Defined in:
- lib/bundler/fetcher/index.rb
Instance Attribute Summary
Attributes inherited from Base
#display_uri, #downloader, #fetch_uri, #remote_uri
Instance Method Summary collapse
Methods inherited from Base
#api_available?, #api_fetcher?, #initialize
Constructor Details
This class inherits a constructor from Bundler::Fetcher::Base
Instance Method Details
#specs(_gem_names) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/bundler/fetcher/index.rb', line 6 def specs(_gem_names) old_sources = Bundler.rubygems.sources Bundler.rubygems.sources = [remote_uri.to_s] Bundler.rubygems.fetch_all_remote_specs rescue Gem::RemoteFetcher::FetchError, OpenSSL::SSL::SSLError => e case e. when /certificate verify failed/ raise CertificateFailureError.new(display_uri) when /401/ raise AuthenticationRequiredError, remote_uri when /403/ if remote_uri.userinfo raise BadAuthenticationError, remote_uri else raise AuthenticationRequiredError, remote_uri end else Bundler.ui.trace e raise HTTPError, "Could not fetch specs from #{display_uri}" end ensure Bundler.rubygems.sources = old_sources end |