class Bundler::Source::Git::GitProxy

The GitProxy is responsible to interact with git repositories. All actions required by the Git source is encapsulated in this object.

Attributes

branch[RW]
explicit_ref[RW]
path[RW]
ref[RW]
revision[W]
tag[RW]
uri[RW]

Public Class Methods

new(path, uri, options = {}, revision = nil, git = nil) click to toggle source
# File bundler/source/git/git_proxy.rb, line 53
def initialize(path, uri, options = {}, revision = nil, git = nil)
  @path     = path
  @uri      = uri
  @branch   = options["branch"]
  @tag      = options["tag"]
  @ref      = options["ref"]
  @explicit_ref = branch || tag || ref
  @revision = revision
  @git      = git
  @commit_ref = nil
end

Public Instance Methods

checkout() click to toggle source
# File bundler/source/git/git_proxy.rb, line 90
def checkout
  return if has_revision_cached?

  Bundler.ui.info "Fetching #{credential_filtered_uri}"

  extra_fetch_needed = clone_needs_extra_fetch?
  unshallow_needed = clone_needs_unshallow?
  return unless extra_fetch_needed || unshallow_needed

  git_remote_fetch(unshallow_needed ? ["--unshallow"] : depth_args)
end
contains?(commit) click to toggle source
# File bundler/source/git/git_proxy.rb, line 75
def contains?(commit)
  allowed_with_path do
    result, status = git_null("branch", "--contains", commit, :dir => path)
    status.success? && result =~ /^\* (.*)$/
  end
end
copy_to(destination, submodules = false) click to toggle source
# File bundler/source/git/git_proxy.rb, line 102
def copy_to(destination, submodules = false)
  unless File.exist?(destination.join(".git"))
    begin
      SharedHelpers.filesystem_access(destination.dirname) do |p|
        FileUtils.mkdir_p(p)
      end
      SharedHelpers.filesystem_access(destination) do |p|
        FileUtils.rm_rf(p)
      end
      git "clone", "--no-checkout", "--quiet", path.to_s, destination.to_s
      File.chmod(((File.stat(destination).mode | 0o777) & ~File.umask), destination)
    rescue Errno::EEXIST => e
      file_path = e.message[%r{.*?((?:[a-zA-Z]:)?/.*)}, 1]
      raise GitError, "Bundler could not install a gem because it needs to " \
        "create a directory, but a file exists - #{file_path}. Please delete " \
        "this file and try again."
    end
  end

  git "fetch", "--force", "--quiet", *extra_fetch_args, :dir => destination if @commit_ref

  git "reset", "--hard", @revision, :dir => destination

  if submodules
    git_retry "submodule", "update", "--init", "--recursive", :dir => destination
  elsif Gem::Version.create(version) >= Gem::Version.create("2.9.0")
    inner_command = "git -C $toplevel submodule deinit --force $sm_path"
    git_retry "submodule", "foreach", "--quiet", inner_command, :dir => destination
  end
end
current_branch() click to toggle source
# File bundler/source/git/git_proxy.rb, line 69
def current_branch
  @current_branch ||= allowed_with_path do
    git("rev-parse", "--abbrev-ref", "HEAD", :dir => path).strip
  end
end
full_version() click to toggle source
# File bundler/source/git/git_proxy.rb, line 86
def full_version
  @full_version ||= git("--version").sub(/git version\s*/, "").strip
end
revision() click to toggle source
# File bundler/source/git/git_proxy.rb, line 65
def revision
  @revision ||= allowed_with_path { find_local_revision }
end
version() click to toggle source
# File bundler/source/git/git_proxy.rb, line 82
def version
  @version ||= full_version.match(/((\.?\d+)+).*/)[1]
end