class Bundler::Fetcher::Base

def initialize(downloader, remote, display_uri)

def initialize(downloader, remote, display_uri)
  raise "Abstract class" if self.class == Base
  @downloader = downloader
  @remote = remote
  @display_uri = display_uri
end