Sha256: 5d5772d4dc1e8a8c77dc336edd8a980e8becaf4fc8a3c1271abad155bf1c9124
Contents?: true
Size: 608 Bytes
Versions: 150
Compression:
Stored size: 608 Bytes
Contents
# frozen_string_literal: true module Avm module Git module Issue class Complete module Remote def remote_master_hash remote_hashs['refs/heads/master'] end def remote_branch_hash remote_hashs["refs/heads/#{branch.name}"] end def remote_tag_hash remote_hashs[tag] end private def remote_name 'origin' end def remote_hashs_uncached launcher_git.remote_hashs(remote_name) end end end end end end
Version data entries
150 entries across 150 versions & 3 rubygems