Sha256: c65d1136eaf56d81511a13a53b8a89bacb3f1732acd833ca062c3744e3cb8dc3
Contents?: true
Size: 564 Bytes
Versions: 106
Compression:
Stored size: 564 Bytes
Contents
# frozen_string_literal: true module Avm module EacWebappBase0 class Deploy module Version VERSION_TARGET_PATH = 'VERSION' def version ([::Time.now, commit_sha1] + version_git_refs).join('|') end def version_git_refs git_remote_hashs.select { |_name, sha1| sha1 == commit_sha1 }.keys .map { |ref| ref.gsub(%r{\Arefs/}, '') }.reject { |ref| ref == 'HEAD' } end def version_target_path VERSION_TARGET_PATH end end end end end
Version data entries
106 entries across 106 versions & 3 rubygems