gitaly-proto 0.91.0 → 0.92.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95543f101774ae646c79d0b1478f36baf08ffc4a
|
4
|
+
data.tar.gz: a2c4f3add38a0999034ea9f271b687dfe23cf3bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9841f31c5a3c8d2c7b1cf947109b46ee2d0bc89870f4859069eef011b6bc46594f919df10147d4ac59ebe93be35b0a3effe0082cb95dc3c02602a38cead99ac4
|
7
|
+
data.tar.gz: 81dbb5106d92b26e77d99966ac0eff42aaab99e0de0e1d9395b081b6390f7eaeac1d5b2ace0617fccfc8673b98341eb6e559708a8a46faf105c7b33e72c57b06
|
@@ -168,6 +168,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
168
168
|
add_message "gitaly.GetInfoAttributesResponse" do
|
169
169
|
optional :attributes, :bytes, 1
|
170
170
|
end
|
171
|
+
add_message "gitaly.CalculateChecksumRequest" do
|
172
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
173
|
+
end
|
174
|
+
add_message "gitaly.CalculateChecksumResponse" do
|
175
|
+
optional :value, :string, 1
|
176
|
+
end
|
171
177
|
end
|
172
178
|
|
173
179
|
module Gitaly
|
@@ -218,4 +224,6 @@ module Gitaly
|
|
218
224
|
FindLicenseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseResponse").msgclass
|
219
225
|
GetInfoAttributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesRequest").msgclass
|
220
226
|
GetInfoAttributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesResponse").msgclass
|
227
|
+
CalculateChecksumRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumRequest").msgclass
|
228
|
+
CalculateChecksumResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumResponse").msgclass
|
221
229
|
end
|
@@ -37,6 +37,7 @@ module Gitaly
|
|
37
37
|
rpc :WriteConfig, WriteConfigRequest, WriteConfigResponse
|
38
38
|
rpc :FindLicense, FindLicenseRequest, FindLicenseResponse
|
39
39
|
rpc :GetInfoAttributes, GetInfoAttributesRequest, stream(GetInfoAttributesResponse)
|
40
|
+
rpc :CalculateChecksum, CalculateChecksumRequest, CalculateChecksumResponse
|
40
41
|
end
|
41
42
|
|
42
43
|
Stub = Service.rpc_stub_class
|
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.92.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: 2018-03-
|
11
|
+
date: 2018-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
101
|
version: '0'
|
102
102
|
requirements: []
|
103
103
|
rubyforge_project:
|
104
|
-
rubygems_version: 2.5.
|
104
|
+
rubygems_version: 2.5.2
|
105
105
|
signing_key:
|
106
106
|
specification_version: 4
|
107
107
|
summary: Auto-generated gRPC client for gitaly
|