class Bundler::Repository

def initialize(path, bindir)

def initialize(path, bindir)
  FileUtils.mkdir_p(path)
  @path   = Pathname.new(path)
  @bindir = Pathname.new(bindir)
  @cache = GemDirectorySource.new(:location => @path.join("cache"))
end