gitaly-proto 0.61.0 → 0.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly.rb +2 -0
- data/ruby/lib/gitaly/conflicts_pb.rb +1 -2
- data/ruby/lib/gitaly/remote_pb.rb +39 -0
- data/ruby/lib/gitaly/remote_services_pb.rb +24 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d46e05989ba28339eb232509bfd6394ea06c971e
|
4
|
+
data.tar.gz: 10f2eda815a949aece57e22e1046d3a65d365e7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6920fca80cb4090fc80245dbf4f0d51c999d2ad43d249ae41343ea149fb68ab33f60ae702c2d3d1d43965ba900a3fa2b02c9e7d06cd0b592f14b4022dfb9d5bd
|
7
|
+
data.tar.gz: bb2353228f030723099a5389c9b65c1234c7407439e45984ae2e98db0d98e839bde40d90beb0fdd3054e5681c7591c109cc51f724805d8266c56ab0de7c60e8a
|
data/ruby/lib/gitaly.rb
CHANGED
@@ -8,8 +8,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
8
8
|
add_message "gitaly.ListConflictFilesRequest" do
|
9
9
|
optional :repository, :message, 1, "gitaly.Repository"
|
10
10
|
optional :our_commit_oid, :string, 2
|
11
|
-
optional :
|
12
|
-
optional :their_commit_oid, :string, 4
|
11
|
+
optional :their_commit_oid, :string, 3
|
13
12
|
end
|
14
13
|
add_message "gitaly.ConflictFileHeader" do
|
15
14
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: remote.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'shared_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "gitaly.AddRemoteRequest" do
|
9
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
10
|
+
optional :name, :string, 2
|
11
|
+
optional :url, :string, 3
|
12
|
+
optional :mirror_refmap, :string, 4
|
13
|
+
end
|
14
|
+
add_message "gitaly.AddRemoteResponse" do
|
15
|
+
end
|
16
|
+
add_message "gitaly.RemoveRemoteRequest" do
|
17
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
18
|
+
optional :name, :string, 2
|
19
|
+
end
|
20
|
+
add_message "gitaly.RemoveRemoteResponse" do
|
21
|
+
optional :result, :bool, 1
|
22
|
+
end
|
23
|
+
add_message "gitaly.FetchInternalRemoteRequest" do
|
24
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
25
|
+
optional :remote_repository, :message, 2, "gitaly.Repository"
|
26
|
+
end
|
27
|
+
add_message "gitaly.FetchInternalRemoteResponse" do
|
28
|
+
optional :result, :bool, 1
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
module Gitaly
|
33
|
+
AddRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteRequest").msgclass
|
34
|
+
AddRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteResponse").msgclass
|
35
|
+
RemoveRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteRequest").msgclass
|
36
|
+
RemoveRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteResponse").msgclass
|
37
|
+
FetchInternalRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteRequest").msgclass
|
38
|
+
FetchInternalRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteResponse").msgclass
|
39
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: remote.proto for package 'gitaly'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'remote_pb'
|
6
|
+
|
7
|
+
module Gitaly
|
8
|
+
module RemoteService
|
9
|
+
class Service
|
10
|
+
|
11
|
+
include GRPC::GenericService
|
12
|
+
|
13
|
+
self.marshal_class_method = :encode
|
14
|
+
self.unmarshal_class_method = :decode
|
15
|
+
self.service_name = 'gitaly.RemoteService'
|
16
|
+
|
17
|
+
rpc :AddRemote, AddRemoteRequest, AddRemoteResponse
|
18
|
+
rpc :FetchInternalRemote, FetchInternalRemoteRequest, FetchInternalRemoteResponse
|
19
|
+
rpc :RemoveRemote, RemoveRemoteRequest, RemoveRemoteResponse
|
20
|
+
end
|
21
|
+
|
22
|
+
Stub = Service.rpc_stub_class
|
23
|
+
end
|
24
|
+
end
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly-proto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-12-
|
11
|
+
date: 2017-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -67,6 +67,8 @@ files:
|
|
67
67
|
- ruby/lib/gitaly/operations_services_pb.rb
|
68
68
|
- ruby/lib/gitaly/ref_pb.rb
|
69
69
|
- ruby/lib/gitaly/ref_services_pb.rb
|
70
|
+
- ruby/lib/gitaly/remote_pb.rb
|
71
|
+
- ruby/lib/gitaly/remote_services_pb.rb
|
70
72
|
- ruby/lib/gitaly/repository-service_pb.rb
|
71
73
|
- ruby/lib/gitaly/repository-service_services_pb.rb
|
72
74
|
- ruby/lib/gitaly/shared_pb.rb
|
@@ -97,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
99
|
version: '0'
|
98
100
|
requirements: []
|
99
101
|
rubyforge_project:
|
100
|
-
rubygems_version: 2.5.
|
102
|
+
rubygems_version: 2.5.2
|
101
103
|
signing_key:
|
102
104
|
specification_version: 4
|
103
105
|
summary: Auto-generated gRPC client for gitaly
|