Class: Bundler::Source::Git::GitProxy
- Inherits:
-
Object
- Object
- Bundler::Source::Git::GitProxy
- Defined in:
- lib/bundler/source/git/git_proxy.rb
Overview
The GitProxy is responsible to interact with git repositories. All actions required by the Git source is encapsulated in this object.
Instance Attribute Summary collapse
-
#branch ⇒ Object
Returns the value of attribute branch.
-
#explicit_ref ⇒ Object
Returns the value of attribute explicit_ref.
-
#path ⇒ Object
Returns the value of attribute path.
-
#ref ⇒ Object
Returns the value of attribute ref.
- #revision ⇒ Object
-
#tag ⇒ Object
Returns the value of attribute tag.
-
#uri ⇒ Object
Returns the value of attribute uri.
Instance Method Summary collapse
- #checkout ⇒ Object
- #contains?(commit) ⇒ Boolean
- #copy_to(destination, submodules = false) ⇒ Object
- #current_branch ⇒ Object
- #full_version ⇒ Object
-
#initialize(path, uri, options = {}, revision = nil, git = nil) ⇒ GitProxy
constructor
A new instance of GitProxy.
- #version ⇒ Object
Constructor Details
#initialize(path, uri, options = {}, revision = nil, git = nil) ⇒ GitProxy
Returns a new instance of GitProxy.
52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/bundler/source/git/git_proxy.rb', line 52 def initialize(path, uri, = {}, revision = nil, git = nil) @path = path @uri = uri @branch = ["branch"] @tag = ["tag"] @ref = ["ref"] @explicit_ref = branch || tag || ref @revision = revision @git = git @commit_ref = nil end |
Instance Attribute Details
#branch ⇒ Object
Returns the value of attribute branch.
49 50 51 |
# File 'lib/bundler/source/git/git_proxy.rb', line 49 def branch @branch end |
#explicit_ref ⇒ Object
Returns the value of attribute explicit_ref.
49 50 51 |
# File 'lib/bundler/source/git/git_proxy.rb', line 49 def explicit_ref @explicit_ref end |
#path ⇒ Object
Returns the value of attribute path.
49 50 51 |
# File 'lib/bundler/source/git/git_proxy.rb', line 49 def path @path end |
#ref ⇒ Object
Returns the value of attribute ref.
49 50 51 |
# File 'lib/bundler/source/git/git_proxy.rb', line 49 def ref @ref end |
#revision ⇒ Object
64 65 66 |
# File 'lib/bundler/source/git/git_proxy.rb', line 64 def revision @revision ||= allowed_with_path { find_local_revision } end |
#tag ⇒ Object
Returns the value of attribute tag.
49 50 51 |
# File 'lib/bundler/source/git/git_proxy.rb', line 49 def tag @tag end |
#uri ⇒ Object
Returns the value of attribute uri.
49 50 51 |
# File 'lib/bundler/source/git/git_proxy.rb', line 49 def uri @uri end |
Instance Method Details
#checkout ⇒ Object
89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/bundler/source/git/git_proxy.rb', line 89 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) ⇒ Boolean
74 75 76 77 78 79 |
# File 'lib/bundler/source/git/git_proxy.rb', line 74 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) ⇒ Object
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/bundler/source/git/git_proxy.rb', line 101 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.[%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 ⇒ Object
68 69 70 71 72 |
# File 'lib/bundler/source/git/git_proxy.rb', line 68 def current_branch @current_branch ||= allowed_with_path do git("rev-parse", "--abbrev-ref", "HEAD", :dir => path).strip end end |
#full_version ⇒ Object
85 86 87 |
# File 'lib/bundler/source/git/git_proxy.rb', line 85 def full_version @full_version ||= git("--version").sub(/git version\s*/, "").strip end |
#version ⇒ Object
81 82 83 |
# File 'lib/bundler/source/git/git_proxy.rb', line 81 def version @version ||= full_version.match(/((\.?\d+)+).*/)[1] end |