gitaly 0.9.0 → 0.11.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 +4 -0
- data/ruby/lib/gitaly/commit_pb.rb +10 -0
- data/ruby/lib/gitaly/commit_services_pb.rb +3 -2
- data/ruby/lib/gitaly/deprecated-services_pb.rb +16 -0
- data/ruby/lib/gitaly/deprecated-services_services_pb.rb +120 -0
- data/ruby/lib/gitaly/diff_services_pb.rb +2 -2
- data/ruby/lib/gitaly/notifications_services_pb.rb +2 -2
- data/ruby/lib/gitaly/ref_pb.rb +1 -11
- data/ruby/lib/gitaly/ref_services_pb.rb +2 -2
- data/ruby/lib/gitaly/repository-service_pb.rb +19 -0
- data/ruby/lib/gitaly/repository-service_services_pb.rb +22 -0
- data/ruby/lib/gitaly/shared_pb.rb +15 -0
- data/ruby/lib/gitaly/smarthttp_services_pb.rb +2 -2
- data/ruby/lib/gitaly/ssh_services_pb.rb +2 -2
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8ec32de32e7238c2a3575b1ea8a85d46f92c00e
|
4
|
+
data.tar.gz: 66c31e5880a4ae7134e724eb093454019e6684fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2054b19d827b489f21c74e9c7ebba1f74ba9ad7b43bbde863b30f44a629aef6841bb59fcf54acb32d405a6119d2f54b2ff092c6956a8596932e6806b92980f4
|
7
|
+
data.tar.gz: 7e27e25a48eeb552fef693a48393e451216bf63ca840f4a9388548f85e660b513f0e8b0c5abbdf97a6bb4e842d2841d23a18a7301e0e66452ea0ef6215742a16
|
data/ruby/lib/gitaly.rb
CHANGED
@@ -5,12 +5,16 @@ require 'gitaly/version'
|
|
5
5
|
|
6
6
|
require 'gitaly/commit_services_pb'
|
7
7
|
|
8
|
+
require 'gitaly/deprecated-services_services_pb'
|
9
|
+
|
8
10
|
require 'gitaly/diff_services_pb'
|
9
11
|
|
10
12
|
require 'gitaly/notifications_services_pb'
|
11
13
|
|
12
14
|
require 'gitaly/ref_services_pb'
|
13
15
|
|
16
|
+
require 'gitaly/repository-service_services_pb'
|
17
|
+
|
14
18
|
require 'gitaly/smarthttp_services_pb'
|
15
19
|
|
16
20
|
require 'gitaly/ssh_services_pb'
|
@@ -32,6 +32,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
32
32
|
value :TREE, 2
|
33
33
|
value :TAG, 3
|
34
34
|
end
|
35
|
+
add_message "gitaly.CommitsBetweenRequest" do
|
36
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
37
|
+
optional :from, :bytes, 2
|
38
|
+
optional :to, :bytes, 3
|
39
|
+
end
|
40
|
+
add_message "gitaly.CommitsBetweenResponse" do
|
41
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
42
|
+
end
|
35
43
|
end
|
36
44
|
|
37
45
|
module Gitaly
|
@@ -40,4 +48,6 @@ module Gitaly
|
|
40
48
|
TreeEntryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryRequest").msgclass
|
41
49
|
TreeEntryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse").msgclass
|
42
50
|
TreeEntryResponse::ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse.ObjectType").enummodule
|
51
|
+
CommitsBetweenRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenRequest").msgclass
|
52
|
+
CommitsBetweenResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenResponse").msgclass
|
43
53
|
end
|
@@ -5,17 +5,18 @@ require 'grpc'
|
|
5
5
|
require 'commit_pb'
|
6
6
|
|
7
7
|
module Gitaly
|
8
|
-
module
|
8
|
+
module CommitService
|
9
9
|
class Service
|
10
10
|
|
11
11
|
include GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
|
-
self.service_name = 'gitaly.
|
15
|
+
self.service_name = 'gitaly.CommitService'
|
16
16
|
|
17
17
|
rpc :CommitIsAncestor, CommitIsAncestorRequest, CommitIsAncestorResponse
|
18
18
|
rpc :TreeEntry, TreeEntryRequest, stream(TreeEntryResponse)
|
19
|
+
rpc :CommitsBetween, CommitsBetweenRequest, stream(CommitsBetweenResponse)
|
19
20
|
end
|
20
21
|
|
21
22
|
Stub = Service.rpc_stub_class
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: deprecated-services.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'commit_pb'
|
7
|
+
require 'diff_pb'
|
8
|
+
require 'notifications_pb'
|
9
|
+
require 'ref_pb'
|
10
|
+
require 'smarthttp_pb'
|
11
|
+
require 'ssh_pb'
|
12
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
13
|
+
end
|
14
|
+
|
15
|
+
module Gitaly
|
16
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: deprecated-services.proto for package 'gitaly'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'deprecated-services_pb'
|
6
|
+
|
7
|
+
module Gitaly
|
8
|
+
module Commit
|
9
|
+
# TODO: remove all these legacy RPC interfaces when client references to them are removed.
|
10
|
+
#
|
11
|
+
# Deprecated
|
12
|
+
class Service
|
13
|
+
|
14
|
+
include GRPC::GenericService
|
15
|
+
|
16
|
+
self.marshal_class_method = :encode
|
17
|
+
self.unmarshal_class_method = :decode
|
18
|
+
self.service_name = 'gitaly.Commit'
|
19
|
+
|
20
|
+
rpc :CommitIsAncestor, CommitIsAncestorRequest, CommitIsAncestorResponse
|
21
|
+
rpc :TreeEntry, TreeEntryRequest, stream(TreeEntryResponse)
|
22
|
+
end
|
23
|
+
|
24
|
+
Stub = Service.rpc_stub_class
|
25
|
+
end
|
26
|
+
module Diff
|
27
|
+
# Deprecated
|
28
|
+
class Service
|
29
|
+
|
30
|
+
include GRPC::GenericService
|
31
|
+
|
32
|
+
self.marshal_class_method = :encode
|
33
|
+
self.unmarshal_class_method = :decode
|
34
|
+
self.service_name = 'gitaly.Diff'
|
35
|
+
|
36
|
+
# Returns stream of CommitDiffResponse with patches chunked over messages
|
37
|
+
rpc :CommitDiff, CommitDiffRequest, stream(CommitDiffResponse)
|
38
|
+
# Return a stream so we can divide the response in chunks of deltas
|
39
|
+
rpc :CommitDelta, CommitDeltaRequest, stream(CommitDeltaResponse)
|
40
|
+
end
|
41
|
+
|
42
|
+
Stub = Service.rpc_stub_class
|
43
|
+
end
|
44
|
+
module Notifications
|
45
|
+
# Deprecated
|
46
|
+
class Service
|
47
|
+
|
48
|
+
include GRPC::GenericService
|
49
|
+
|
50
|
+
self.marshal_class_method = :encode
|
51
|
+
self.unmarshal_class_method = :decode
|
52
|
+
self.service_name = 'gitaly.Notifications'
|
53
|
+
|
54
|
+
rpc :PostReceive, PostReceiveRequest, PostReceiveResponse
|
55
|
+
end
|
56
|
+
|
57
|
+
Stub = Service.rpc_stub_class
|
58
|
+
end
|
59
|
+
module Ref
|
60
|
+
# Deprecated
|
61
|
+
class Service
|
62
|
+
|
63
|
+
include GRPC::GenericService
|
64
|
+
|
65
|
+
self.marshal_class_method = :encode
|
66
|
+
self.unmarshal_class_method = :decode
|
67
|
+
self.service_name = 'gitaly.Ref'
|
68
|
+
|
69
|
+
rpc :FindDefaultBranchName, FindDefaultBranchNameRequest, FindDefaultBranchNameResponse
|
70
|
+
rpc :FindAllBranchNames, FindAllBranchNamesRequest, stream(FindAllBranchNamesResponse)
|
71
|
+
rpc :FindAllTagNames, FindAllTagNamesRequest, stream(FindAllTagNamesResponse)
|
72
|
+
# Find a Ref matching the given constraints. Response may be empty.
|
73
|
+
rpc :FindRefName, FindRefNameRequest, FindRefNameResponse
|
74
|
+
# Return a stream so we can divide the response in chunks of branches
|
75
|
+
rpc :FindLocalBranches, FindLocalBranchesRequest, stream(FindLocalBranchesResponse)
|
76
|
+
end
|
77
|
+
|
78
|
+
Stub = Service.rpc_stub_class
|
79
|
+
end
|
80
|
+
module SmartHTTP
|
81
|
+
# DEPRECATED
|
82
|
+
class Service
|
83
|
+
|
84
|
+
include GRPC::GenericService
|
85
|
+
|
86
|
+
self.marshal_class_method = :encode
|
87
|
+
self.unmarshal_class_method = :decode
|
88
|
+
self.service_name = 'gitaly.SmartHTTP'
|
89
|
+
|
90
|
+
# The response body for GET /info/refs?service=git-upload-pack
|
91
|
+
rpc :InfoRefsUploadPack, InfoRefsRequest, stream(InfoRefsResponse)
|
92
|
+
# The response body for GET /info/refs?service=git-receive-pack
|
93
|
+
rpc :InfoRefsReceivePack, InfoRefsRequest, stream(InfoRefsResponse)
|
94
|
+
# Request and response body for POST /upload-pack
|
95
|
+
rpc :PostUploadPack, stream(PostUploadPackRequest), stream(PostUploadPackResponse)
|
96
|
+
# Request and response body for POST /receive-pack
|
97
|
+
rpc :PostReceivePack, stream(PostReceivePackRequest), stream(PostReceivePackResponse)
|
98
|
+
end
|
99
|
+
|
100
|
+
Stub = Service.rpc_stub_class
|
101
|
+
end
|
102
|
+
module SSH
|
103
|
+
# DEPRECATED
|
104
|
+
class Service
|
105
|
+
|
106
|
+
include GRPC::GenericService
|
107
|
+
|
108
|
+
self.marshal_class_method = :encode
|
109
|
+
self.unmarshal_class_method = :decode
|
110
|
+
self.service_name = 'gitaly.SSH'
|
111
|
+
|
112
|
+
# To forward 'git upload-pack' to Gitaly for SSH sessions
|
113
|
+
rpc :SSHUploadPack, stream(SSHUploadPackRequest), stream(SSHUploadPackResponse)
|
114
|
+
# To forward 'git receive-pack' to Gitaly for SSH sessions
|
115
|
+
rpc :SSHReceivePack, stream(SSHReceivePackRequest), stream(SSHReceivePackResponse)
|
116
|
+
end
|
117
|
+
|
118
|
+
Stub = Service.rpc_stub_class
|
119
|
+
end
|
120
|
+
end
|
@@ -5,14 +5,14 @@ require 'grpc'
|
|
5
5
|
require 'diff_pb'
|
6
6
|
|
7
7
|
module Gitaly
|
8
|
-
module
|
8
|
+
module DiffService
|
9
9
|
class Service
|
10
10
|
|
11
11
|
include GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
|
-
self.service_name = 'gitaly.
|
15
|
+
self.service_name = 'gitaly.DiffService'
|
16
16
|
|
17
17
|
# Returns stream of CommitDiffResponse with patches chunked over messages
|
18
18
|
rpc :CommitDiff, CommitDiffRequest, stream(CommitDiffResponse)
|
@@ -5,14 +5,14 @@ require 'grpc'
|
|
5
5
|
require 'notifications_pb'
|
6
6
|
|
7
7
|
module Gitaly
|
8
|
-
module
|
8
|
+
module NotificationService
|
9
9
|
class Service
|
10
10
|
|
11
11
|
include GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
|
-
self.service_name = 'gitaly.
|
15
|
+
self.service_name = 'gitaly.NotificationService'
|
16
16
|
|
17
17
|
rpc :PostReceive, PostReceiveRequest, PostReceiveResponse
|
18
18
|
end
|
data/ruby/lib/gitaly/ref_pb.rb
CHANGED
@@ -4,7 +4,6 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
require 'shared_pb'
|
7
|
-
require 'google/protobuf/timestamp_pb'
|
8
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
8
|
add_message "gitaly.FindDefaultBranchNameRequest" do
|
10
9
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -46,15 +45,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
46
45
|
end
|
47
46
|
add_message "gitaly.FindLocalBranchResponse" do
|
48
47
|
optional :name, :bytes, 1
|
49
|
-
optional :
|
50
|
-
optional :commit_subject, :bytes, 3
|
51
|
-
optional :commit_author, :message, 4, "gitaly.FindLocalBranchCommitAuthor"
|
52
|
-
optional :commit_committer, :message, 5, "gitaly.FindLocalBranchCommitAuthor"
|
53
|
-
end
|
54
|
-
add_message "gitaly.FindLocalBranchCommitAuthor" do
|
55
|
-
optional :name, :bytes, 1
|
56
|
-
optional :email, :bytes, 2
|
57
|
-
optional :date, :message, 3, "google.protobuf.Timestamp"
|
48
|
+
optional :target, :message, 2, "gitaly.GitCommit"
|
58
49
|
end
|
59
50
|
end
|
60
51
|
|
@@ -71,5 +62,4 @@ module Gitaly
|
|
71
62
|
FindLocalBranchesRequest::SortBy = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest.SortBy").enummodule
|
72
63
|
FindLocalBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesResponse").msgclass
|
73
64
|
FindLocalBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchResponse").msgclass
|
74
|
-
FindLocalBranchCommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchCommitAuthor").msgclass
|
75
65
|
end
|
@@ -5,14 +5,14 @@ require 'grpc'
|
|
5
5
|
require 'ref_pb'
|
6
6
|
|
7
7
|
module Gitaly
|
8
|
-
module
|
8
|
+
module RefService
|
9
9
|
class Service
|
10
10
|
|
11
11
|
include GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
|
-
self.service_name = 'gitaly.
|
15
|
+
self.service_name = 'gitaly.RefService'
|
16
16
|
|
17
17
|
rpc :FindDefaultBranchName, FindDefaultBranchNameRequest, FindDefaultBranchNameResponse
|
18
18
|
rpc :FindAllBranchNames, FindAllBranchNamesRequest, stream(FindAllBranchNamesResponse)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: repository-service.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'shared_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "gitaly.RepositoryExistsRequest" do
|
9
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
10
|
+
end
|
11
|
+
add_message "gitaly.RepositoryExistsResponse" do
|
12
|
+
optional :exists, :bool, 1
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
module Gitaly
|
17
|
+
RepositoryExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsRequest").msgclass
|
18
|
+
RepositoryExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsResponse").msgclass
|
19
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: repository-service.proto for package 'gitaly'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'repository-service_pb'
|
6
|
+
|
7
|
+
module Gitaly
|
8
|
+
module RepositoryService
|
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.RepositoryService'
|
16
|
+
|
17
|
+
rpc :Exists, RepositoryExistsRequest, RepositoryExistsResponse
|
18
|
+
end
|
19
|
+
|
20
|
+
Stub = Service.rpc_stub_class
|
21
|
+
end
|
22
|
+
end
|
@@ -3,11 +3,24 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
+
require 'google/protobuf/timestamp_pb'
|
6
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
8
|
add_message "gitaly.Repository" do
|
8
9
|
optional :storage_name, :string, 2
|
9
10
|
optional :relative_path, :string, 3
|
10
11
|
end
|
12
|
+
add_message "gitaly.GitCommit" do
|
13
|
+
optional :id, :string, 1
|
14
|
+
optional :subject, :bytes, 2
|
15
|
+
optional :author, :message, 4, "gitaly.CommitAuthor"
|
16
|
+
optional :committer, :message, 5, "gitaly.CommitAuthor"
|
17
|
+
repeated :parent_ids, :string, 6
|
18
|
+
end
|
19
|
+
add_message "gitaly.CommitAuthor" do
|
20
|
+
optional :name, :bytes, 1
|
21
|
+
optional :email, :bytes, 2
|
22
|
+
optional :date, :message, 3, "google.protobuf.Timestamp"
|
23
|
+
end
|
11
24
|
add_message "gitaly.ExitStatus" do
|
12
25
|
optional :value, :int32, 1
|
13
26
|
end
|
@@ -15,5 +28,7 @@ end
|
|
15
28
|
|
16
29
|
module Gitaly
|
17
30
|
Repository = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Repository").msgclass
|
31
|
+
GitCommit = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GitCommit").msgclass
|
32
|
+
CommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitAuthor").msgclass
|
18
33
|
ExitStatus = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExitStatus").msgclass
|
19
34
|
end
|
@@ -5,14 +5,14 @@ require 'grpc'
|
|
5
5
|
require 'smarthttp_pb'
|
6
6
|
|
7
7
|
module Gitaly
|
8
|
-
module
|
8
|
+
module SmartHTTPService
|
9
9
|
class Service
|
10
10
|
|
11
11
|
include GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
|
-
self.service_name = 'gitaly.
|
15
|
+
self.service_name = 'gitaly.SmartHTTPService'
|
16
16
|
|
17
17
|
# The response body for GET /info/refs?service=git-upload-pack
|
18
18
|
rpc :InfoRefsUploadPack, InfoRefsRequest, stream(InfoRefsResponse)
|
@@ -5,14 +5,14 @@ require 'grpc'
|
|
5
5
|
require 'ssh_pb'
|
6
6
|
|
7
7
|
module Gitaly
|
8
|
-
module
|
8
|
+
module SSHService
|
9
9
|
class Service
|
10
10
|
|
11
11
|
include GRPC::GenericService
|
12
12
|
|
13
13
|
self.marshal_class_method = :encode
|
14
14
|
self.unmarshal_class_method = :decode
|
15
|
-
self.service_name = 'gitaly.
|
15
|
+
self.service_name = 'gitaly.SSHService'
|
16
16
|
|
17
17
|
# To forward 'git upload-pack' to Gitaly for SSH sessions
|
18
18
|
rpc :SSHUploadPack, stream(SSHUploadPackRequest), stream(SSHUploadPackResponse)
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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-06-
|
11
|
+
date: 2017-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -80,12 +80,16 @@ files:
|
|
80
80
|
- ruby/lib/gitaly.rb
|
81
81
|
- ruby/lib/gitaly/commit_pb.rb
|
82
82
|
- ruby/lib/gitaly/commit_services_pb.rb
|
83
|
+
- ruby/lib/gitaly/deprecated-services_pb.rb
|
84
|
+
- ruby/lib/gitaly/deprecated-services_services_pb.rb
|
83
85
|
- ruby/lib/gitaly/diff_pb.rb
|
84
86
|
- ruby/lib/gitaly/diff_services_pb.rb
|
85
87
|
- ruby/lib/gitaly/notifications_pb.rb
|
86
88
|
- ruby/lib/gitaly/notifications_services_pb.rb
|
87
89
|
- ruby/lib/gitaly/ref_pb.rb
|
88
90
|
- ruby/lib/gitaly/ref_services_pb.rb
|
91
|
+
- ruby/lib/gitaly/repository-service_pb.rb
|
92
|
+
- ruby/lib/gitaly/repository-service_services_pb.rb
|
89
93
|
- ruby/lib/gitaly/shared_pb.rb
|
90
94
|
- ruby/lib/gitaly/smarthttp_pb.rb
|
91
95
|
- ruby/lib/gitaly/smarthttp_services_pb.rb
|
@@ -112,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
116
|
version: '0'
|
113
117
|
requirements: []
|
114
118
|
rubyforge_project:
|
115
|
-
rubygems_version: 2.
|
119
|
+
rubygems_version: 2.6.10
|
116
120
|
signing_key:
|
117
121
|
specification_version: 4
|
118
122
|
summary: Auto-generated gRPC client for gitaly
|