gitaly-proto 0.98.0 → 0.99.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: d58c1a05b8c153b8a8473307a3cf3de07f0e6d36
|
4
|
+
data.tar.gz: ccd8a3c2a5f244704b06c3fdc8b973680f303774
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57e51968575442249b14590993cb9bde60b9ba4f6136b5a3ef651e77bbf979d6a2e27ce13b92c56b8bf20089aa0619222a099c0180bac22db97e1b0a9738af0e
|
7
|
+
data.tar.gz: 1f0ee188099cbb2f35610791768c18cbba0703ad8ee4048ea1260425489648806fb678bff88aa3ea4c3cf9ed9b5612acba3dd4e7601d0590508095e225409c7a
|
@@ -217,6 +217,22 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
217
217
|
value :RENAMED, 5
|
218
218
|
value :TYPE_CHANGED, 6
|
219
219
|
end
|
220
|
+
add_message "gitaly.SearchFilesByNameRequest" do
|
221
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
222
|
+
optional :query, :string, 2
|
223
|
+
optional :ref, :bytes, 3
|
224
|
+
end
|
225
|
+
add_message "gitaly.SearchFilesByNameResponse" do
|
226
|
+
repeated :files, :bytes, 1
|
227
|
+
end
|
228
|
+
add_message "gitaly.SearchFilesByContentRequest" do
|
229
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
230
|
+
optional :query, :string, 2
|
231
|
+
optional :ref, :bytes, 3
|
232
|
+
end
|
233
|
+
add_message "gitaly.SearchFilesByContentResponse" do
|
234
|
+
repeated :matches, :bytes, 1
|
235
|
+
end
|
220
236
|
end
|
221
237
|
|
222
238
|
module Gitaly
|
@@ -279,4 +295,8 @@ module Gitaly
|
|
279
295
|
GetRawChangesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse").msgclass
|
280
296
|
GetRawChangesResponse::RawChange = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange").msgclass
|
281
297
|
GetRawChangesResponse::RawChange::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange.Operation").enummodule
|
298
|
+
SearchFilesByNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByNameRequest").msgclass
|
299
|
+
SearchFilesByNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByNameResponse").msgclass
|
300
|
+
SearchFilesByContentRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentRequest").msgclass
|
301
|
+
SearchFilesByContentResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentResponse").msgclass
|
282
302
|
end
|
@@ -42,6 +42,8 @@ module Gitaly
|
|
42
42
|
rpc :GetSnapshot, GetSnapshotRequest, stream(GetSnapshotResponse)
|
43
43
|
rpc :CreateRepositoryFromSnapshot, CreateRepositoryFromSnapshotRequest, CreateRepositoryFromSnapshotResponse
|
44
44
|
rpc :GetRawChanges, GetRawChangesRequest, stream(GetRawChangesResponse)
|
45
|
+
rpc :SearchFilesByContent, SearchFilesByContentRequest, stream(SearchFilesByContentResponse)
|
46
|
+
rpc :SearchFilesByName, SearchFilesByNameRequest, stream(SearchFilesByNameResponse)
|
45
47
|
end
|
46
48
|
|
47
49
|
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.99.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-
|
11
|
+
date: 2018-05-02 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.
|
104
|
+
rubygems_version: 2.5.2.1
|
105
105
|
signing_key:
|
106
106
|
specification_version: 4
|
107
107
|
summary: Auto-generated gRPC client for gitaly
|