Class: FossilDownloadStrategy

Inherits:
VCSDownloadStrategy show all
Defined in:
download_strategy.rb

Overview

Strategy for downloading a Fossil 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, #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) ⇒ FossilDownloadStrategy

Returns a new instance of FossilDownloadStrategy.



1392
1393
1394
1395
# File 'download_strategy.rb', line 1392

def initialize(url, name, version, **meta)
  super
  @url = @url.sub(%r{^fossil://}, "")
end

Instance Method Details

#last_commitString

Return last commit's unique identifier for the repository.

Returns:



1410
1411
1412
1413
# File 'download_strategy.rb', line 1410

def last_commit
  out, = silent_command("fossil", args: ["info", "tip", "-R", cached_location])
  out[/^uuid: +(\h+) .+$/, 1]
end

#repo_valid?Boolean

Returns:

  • (Boolean)


1415
1416
1417
# File 'download_strategy.rb', line 1415

def repo_valid?
  silent_command("fossil", args: ["branch", "-R", cached_location]).success?
end

#source_modified_timeTime

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

Returns:



1401
1402
1403
1404
# File 'download_strategy.rb', line 1401

def source_modified_time
  out, = silent_command("fossil", args: ["info", "tip", "-R", cached_location])
  Time.parse(out[/^uuid: +\h+ (.+)$/, 1])
end