class Bundler::Fetcher::Base

Attributes

display_uri[R]
downloader[R]
gem_remote_fetcher[R]
remote[R]

Public Class Methods

new(downloader, remote, display_uri, gem_remote_fetcher) click to toggle source
# File bundler/fetcher/base.rb, line 11
def initialize(downloader, remote, display_uri, gem_remote_fetcher)
  raise "Abstract class" if self.class == Base
  @downloader = downloader
  @remote = remote
  @display_uri = display_uri
  @gem_remote_fetcher = gem_remote_fetcher
end

Public Instance Methods

api_fetcher?() click to toggle source
# File bundler/fetcher/base.rb, line 37
def api_fetcher?
  false
end
available?() click to toggle source
# File bundler/fetcher/base.rb, line 33
def available?
  true
end
fetch_uri() click to toggle source
# File bundler/fetcher/base.rb, line 23
def fetch_uri
  @fetch_uri ||= if remote_uri.host == "rubygems.org"
    uri = remote_uri.dup
    uri.host = "index.rubygems.org"
    uri
  else
    remote_uri
  end
end
remote_uri() click to toggle source
# File bundler/fetcher/base.rb, line 19
def remote_uri
  @remote.uri
end

Private Instance Methods

log_specs() { || ... } click to toggle source
# File bundler/fetcher/base.rb, line 43
def log_specs(&block)
  if Bundler.ui.debug?
    Bundler.ui.debug yield
  else
    Bundler.ui.info ".", false
  end
end