Class: Bundler::Fetcher::CompactIndex::ClientFetcher

Inherits:
Struct
  • Object
show all
Defined in:
lib/bundler/fetcher/compact_index.rb

Instance Method Summary collapse

Instance Method Details

#call(path, headers) ⇒ Object



130
131
132
133
134
135
136
# File 'lib/bundler/fetcher/compact_index.rb', line 130

def call(path, headers)
  fetcher.downloader.fetch(fetcher.fetch_uri + path, headers)
rescue NetworkDownError => e
  raise unless Bundler.feature_flag.allow_offline_install? && headers["If-None-Match"]
  ui.warn "Using the cached data for the new index because of a network error: #{e}"
  Net::HTTPNotModified.new(nil, nil, nil)
end