Class: GitDownloadStrategy

Inherits:
VCSDownloadStrategy show all
Defined in:
download_strategy.rb

Overview

Strategy for downloading a Git repository.

Direct Known Subclasses

GitHubGitDownloadStrategy

Constant Summary

Constants inherited from VCSDownloadStrategy

VCSDownloadStrategy::REF_TYPES

Instance Attribute Summary

Attributes inherited from AbstractDownloadStrategy

#cache, #cached_location, #url

Instance Method Summary collapse

Methods inherited from VCSDownloadStrategy

#commit_outdated?, #fetch, #fetch_last_commit, #head?

Methods inherited from AbstractDownloadStrategy

#basename, #clear_cache, #fetch, #quiet!, #quiet?, #shutup!, #stage

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Methods included from Context

current, current=, #debug?, #quiet?, #verbose?, #with_context

Constructor Details

#initialize(url, name, version, **meta) ⇒ GitDownloadStrategy

Returns a new instance of GitDownloadStrategy.



831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
# File 'download_strategy.rb', line 831

def initialize(url, name, version, **meta)
  # Needs to be before the call to `super`, as the VCSDownloadStrategy's
  # constructor calls `cache_tag` and sets the cache path.
  @only_path = meta[:only_path]

  if @only_path.present?
    # "Cone" mode of sparse checkout requires patterns to be directories
    @only_path = "/#{@only_path}" unless @only_path.start_with?("/")
    @only_path = "#{@only_path}/" unless @only_path.end_with?("/")
  end

  super
  @ref_type ||= :branch
  @ref ||= "master"
end

Instance Method Details

#last_commitString

Return last commit's unique identifier for the repository.

Returns:



860
861
862
863
# File 'download_strategy.rb', line 860

def last_commit
  out, = silent_command("git", args: ["--git-dir", git_dir, "rev-parse", "--short=7", "HEAD"])
  out.chomp
end

#source_modified_timeTime

Returns the most recent modified time for all files in the current working directory after stage.

Returns:



851
852
853
854
# File 'download_strategy.rb', line 851

def source_modified_time
  out, = silent_command("git", args: ["--git-dir", git_dir, "show", "-s", "--format=%cD"])
  Time.parse(out)
end