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 Context

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

Constructor Details

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

Returns a new instance of FossilDownloadStrategy.



1395
1396
1397
1398
# File 'download_strategy.rb', line 1395

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

Instance Method Details

#last_commitString



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

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

#repo_valid?Boolean

Returns:

  • (Boolean)


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

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

#source_modified_timeTime



1403
1404
1405
1406
# File 'download_strategy.rb', line 1403

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