gitaly 0.20.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/ref_pb.rb +15 -0
- data/ruby/lib/gitaly/ref_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62b8b817a5ff01df6741625df9d2aecb11b39aa5
|
4
|
+
data.tar.gz: 3d3ec4e0e8717e1769205cdec43975f49382dafe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06153ece4f6cc01e4dca3fd6e46c1a76782c2ca2882f59c8c8efb9386363e6c9699f624309013d5c08f7f71a522a528b0fea7fc1a3dfe2869b2cd1226d29740c
|
7
|
+
data.tar.gz: 9c7a9fb00f635d707939669aacce65e527d081b2be64d11a02a90843b9c99702be020b1930a33a813a702ad7a2ec1a2c7be52bad644423c42ef0280bc5763c8b
|
data/ruby/lib/gitaly/ref_pb.rb
CHANGED
@@ -66,6 +66,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
66
66
|
optional :name, :bytes, 1
|
67
67
|
optional :target, :message, 2, "gitaly.GitCommit"
|
68
68
|
end
|
69
|
+
add_message "gitaly.FindAllTagsRequest" do
|
70
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
71
|
+
end
|
72
|
+
add_message "gitaly.FindAllTagsResponse" do
|
73
|
+
repeated :tags, :message, 1, "gitaly.FindAllTagsResponse.Tag"
|
74
|
+
end
|
75
|
+
add_message "gitaly.FindAllTagsResponse.Tag" do
|
76
|
+
optional :name, :bytes, 1
|
77
|
+
optional :id, :string, 2
|
78
|
+
optional :target_commit, :message, 3, "gitaly.GitCommit"
|
79
|
+
optional :message, :bytes, 4
|
80
|
+
end
|
69
81
|
end
|
70
82
|
|
71
83
|
module Gitaly
|
@@ -85,4 +97,7 @@ module Gitaly
|
|
85
97
|
FindAllBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesRequest").msgclass
|
86
98
|
FindAllBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse").msgclass
|
87
99
|
FindAllBranchesResponse::Branch = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
100
|
+
FindAllTagsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
101
|
+
FindAllTagsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
102
|
+
FindAllTagsResponse::Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse.Tag").msgclass
|
88
103
|
end
|
@@ -22,6 +22,7 @@ module Gitaly
|
|
22
22
|
# Return a stream so we can divide the response in chunks of branches
|
23
23
|
rpc :FindLocalBranches, FindLocalBranchesRequest, stream(FindLocalBranchesResponse)
|
24
24
|
rpc :FindAllBranches, FindAllBranchesRequest, stream(FindAllBranchesResponse)
|
25
|
+
rpc :FindAllTags, FindAllTagsRequest, stream(FindAllTagsResponse)
|
25
26
|
end
|
26
27
|
|
27
28
|
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
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.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-07-
|
11
|
+
date: 2017-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
118
|
version: '0'
|
119
119
|
requirements: []
|
120
120
|
rubyforge_project:
|
121
|
-
rubygems_version: 2.5.
|
121
|
+
rubygems_version: 2.5.1
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: Auto-generated gRPC client for gitaly
|