Sha256: 149058c9f1c4e234dd60d0c393e99af270988c8dc9792aec2d99149d3e9c45e9

Contents?: true

Size: 529 Bytes

Versions: 124

Compression:

Stored size: 529 Bytes

Contents

# frozen_string_literal: true

module Avm
  module Git
    module Issue
      class Complete
        def remote_master_hash
          remote_hashs['refs/heads/master']
        end

        def remote_branch_hash
          remote_hashs["refs/heads/#{branch}"]
        end

        def remote_tag_hash
          remote_hashs[tag]
        end

        private

        def remote_name
          'origin'
        end

        def remote_hashs_uncached
          @git.remote_hashs(remote_name)
        end
      end
    end
  end
end

Version data entries

124 entries across 124 versions & 1 rubygems

Version Path
avm-tools-0.102.1 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.102.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.101.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.100.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.99.1 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.99.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.98.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.97.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.96.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.95.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.94.3 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.94.2 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.94.1 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.94.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.93.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.92.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.91.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.90.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.89.0 lib/avm/git/issue/complete/_remote.rb
avm-tools-0.88.0 lib/avm/git/issue/complete/_remote.rb