Class: FossilDownloadStrategy
- Inherits:
-
VCSDownloadStrategy
- Object
- AbstractDownloadStrategy
- VCSDownloadStrategy
- FossilDownloadStrategy
- 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
-
#initialize(url, name, version, **meta) ⇒ FossilDownloadStrategy
constructor
A new instance of FossilDownloadStrategy.
-
#last_commit ⇒ String
Return last commit's unique identifier for the repository.
- #repo_valid? ⇒ Boolean
-
#source_modified_time ⇒ Time
Returns the most recent modified time for all files in the current working directory after stage.
Methods inherited from VCSDownloadStrategy
#commit_outdated?, #fetch, #fetch_last_commit, #head?
Methods inherited from AbstractDownloadStrategy
#basename, #clear_cache, #fetch, #quiet!, #quiet?, #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.
1408 1409 1410 1411 |
# File 'download_strategy.rb', line 1408 def initialize(url, name, version, **) super @url = @url.sub(%r{^fossil://}, "") end |
Instance Method Details
#last_commit ⇒ String
Return last commit's unique identifier for the repository.
1426 1427 1428 1429 |
# File 'download_strategy.rb', line 1426 def last_commit out, = silent_command("fossil", args: ["info", "tip", "-R", cached_location]) out[/^uuid: +(\h+) .+$/, 1] end |
#repo_valid? ⇒ Boolean
1431 1432 1433 |
# File 'download_strategy.rb', line 1431 def repo_valid? silent_command("fossil", args: ["branch", "-R", cached_location]).success? end |
#source_modified_time ⇒ Time
Returns the most recent modified time for all files in the current working directory after stage.
1417 1418 1419 1420 |
# File 'download_strategy.rb', line 1417 def source_modified_time out, = silent_command("fossil", args: ["info", "tip", "-R", cached_location]) Time.parse(out[/^uuid: +\h+ (.+)$/, 1]) end |