Class: SubversionDownloadStrategy

Inherits:
VCSDownloadStrategy show all
Defined in:
download_strategy.rb

Overview

Strategy for downloading a Subversion repository.

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_last_commit, #head?

Methods inherited from AbstractDownloadStrategy

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

Methods included from Context

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

Constructor Details

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

Returns a new instance of SubversionDownloadStrategy.



720
721
722
723
# File 'download_strategy.rb', line 720

def initialize(url, name, version, **meta)
  super
  @url = @url.sub("svn+http://", "")
end

Instance Method Details

#fetch(timeout: nil) ⇒ Object

Download and cache the repository at AbstractDownloadStrategy#cached_location.



728
729
730
731
732
733
# File 'download_strategy.rb', line 728

def fetch(timeout: nil)
  if @url.chomp("/") != repo_url || !silent_command("svn", args: ["switch", @url, cached_location]).success?
    clear_cache
  end
  super
end

#last_commitString



752
753
754
755
# File 'download_strategy.rb', line 752

def last_commit
  out, = silent_command("svn", args: ["info", "--show-item", "revision"], chdir: cached_location)
  out.strip
end

#source_modified_timeTime



738
739
740
741
742
743
744
745
746
747
# File 'download_strategy.rb', line 738

def source_modified_time
  time = if Version.create(T.must(Utils::Svn.version)) >= Version.create("1.9")
    out, = silent_command("svn", args: ["info", "--show-item", "last-changed-date"], chdir: cached_location)
    out
  else
    out, = silent_command("svn", args: ["info"], chdir: cached_location)
    out[/^Last Changed Date: (.+)$/, 1]
  end
  Time.parse time
end