Class: MercurialDownloadStrategy

Inherits:
VCSDownloadStrategy show all
Defined in:
download_strategy.rb

Overview

Strategy for downloading a Mercurial 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) ⇒ MercurialDownloadStrategy

Returns a new instance of MercurialDownloadStrategy.



1245
1246
1247
1248
# File 'download_strategy.rb', line 1245

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

Instance Method Details

#last_commitString



1263
1264
1265
1266
# File 'download_strategy.rb', line 1263

def last_commit
  out, = silent_command("hg", args: ["parent", "--template", "{node|short}", "-R", cached_location])
  out.chomp
end

#source_modified_timeTime



1253
1254
1255
1256
1257
1258
# File 'download_strategy.rb', line 1253

def source_modified_time
  out, = silent_command("hg",
                        args: ["tip", "--template", "{date|isodate}", "-R", cached_location])

  Time.parse(out)
end