class Bundler::Source

eventually, this will be git, svn, HTTP
Represents a source of rubygems. Initially, this is only gem repositories, but

def initialize(options) ; end

def initialize(options) ; end

def process_source_gems(gems)

def process_source_gems(gems)
  new_gems = Hash.new { |h,k| h[k] = [] }
  gems.values.each do |spec|
    spec.source = self
    new_gems[spec.name] << spec
  end
  new_gems
end