# File lib/rubygems/mirror.rb, line 18
  def initialize(from = DEFAULT_URI, to = DEFAULT_TO, parallelism = 10)
    @from, @to = from, to
    @fetcher = Fetcher.new
    @pool = Pool.new(parallelism)
  end