Sha256: d0c8d34d89cd4532a5659500632a7f5bf6c769f835bbec5c928457dad6016e70

Contents?: true

Size: 595 Bytes

Versions: 23

Compression:

Stored size: 595 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}"]
          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
end

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
avm-tools-0.113.5 sub/avm-git/lib/avm/git/issue/complete/remote.rb
avm-tools-0.113.4 sub/avm-git/lib/avm/git/issue/complete/remote.rb
avm-tools-0.113.3 sub/avm-git/lib/avm/git/issue/complete/remote.rb
avm-tools-0.113.2 sub/avm-git/lib/avm/git/issue/complete/remote.rb
avm-git-0.3.0 lib/avm/git/issue/complete/remote.rb
avm-git-0.2.0 lib/avm/git/issue/complete/remote.rb
avm-tools-0.110.0 vendor/avm-git/lib/avm/git/issue/complete/remote.rb
avm-tools-0.109.1 vendor/avm-git/lib/avm/git/issue/complete/remote.rb
avm-git-0.1.0 lib/avm/git/issue/complete/remote.rb
avm-tools-0.109.0 vendor/avm-git/lib/avm/git/issue/complete/remote.rb
avm-0.5.0 lib/avm/git/issue/complete/remote.rb
avm-tools-0.108.0 vendor/avm/lib/avm/git/issue/complete/remote.rb
avm-0.4.0 lib/avm/git/issue/complete/remote.rb
avm-tools-0.107.0 vendor/avm/lib/avm/git/issue/complete/remote.rb
avm-tools-0.106.0 vendor/avm/lib/avm/git/issue/complete/remote.rb
avm-0.3.2 lib/avm/git/issue/complete/remote.rb
avm-0.3.1 lib/avm/git/issue/complete/remote.rb
avm-tools-0.105.0 vendor/avm/lib/avm/git/issue/complete/remote.rb
avm-0.3.0 lib/avm/git/issue/complete/remote.rb
avm-tools-0.104.0 vendor/avm/lib/avm/git/issue/complete/remote.rb