class Bundler::GitSource

def initialize(bundle, options)

def initialize(bundle, options)
  super
  @uri = options[:uri]
  @branch = options[:branch] || 'master'
  @ref = options[:ref] || "origin/#{@branch}"
end