gitaly 0.28.1 → 0.29.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 +9 -0
- data/ruby/lib/gitaly/ref_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57f30798280efab5fcd73457e8790380f4e61a90
|
4
|
+
data.tar.gz: 4e1ebafc926f3ccefc06b984a562c31b9cd0dfba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a4a6a26bd76a9b3936452719ad4b7962e6eceafd054a2ab3aec4105526eaa05afc1299b40d9e749ff3cdd215e37cf80ec505acda2ae74f9220f6780a04d4c8e
|
7
|
+
data.tar.gz: dac69b63a222b560b4b4eff5d584323aad1d51c6240a371bd75ba7350f62f18bf25eddc4bd1d46b811329095d9ca251da58512686820da8c10eaada2b41a6ffc
|
data/ruby/lib/gitaly/ref_pb.rb
CHANGED
@@ -78,6 +78,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
78
78
|
optional :target_commit, :message, 3, "gitaly.GitCommit"
|
79
79
|
optional :message, :bytes, 4
|
80
80
|
end
|
81
|
+
add_message "gitaly.RefExistsRequest" do
|
82
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
83
|
+
optional :ref, :bytes, 2
|
84
|
+
end
|
85
|
+
add_message "gitaly.RefExistsResponse" do
|
86
|
+
optional :value, :bool, 1
|
87
|
+
end
|
81
88
|
end
|
82
89
|
|
83
90
|
module Gitaly
|
@@ -100,4 +107,6 @@ module Gitaly
|
|
100
107
|
FindAllTagsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
101
108
|
FindAllTagsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
102
109
|
FindAllTagsResponse::Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse.Tag").msgclass
|
110
|
+
RefExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
|
111
|
+
RefExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsResponse").msgclass
|
103
112
|
end
|
@@ -23,6 +23,7 @@ module Gitaly
|
|
23
23
|
rpc :FindLocalBranches, FindLocalBranchesRequest, stream(FindLocalBranchesResponse)
|
24
24
|
rpc :FindAllBranches, FindAllBranchesRequest, stream(FindAllBranchesResponse)
|
25
25
|
rpc :FindAllTags, FindAllTagsRequest, stream(FindAllTagsResponse)
|
26
|
+
rpc :RefExists, RefExistsRequest, RefExistsResponse
|
26
27
|
end
|
27
28
|
|
28
29
|
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.29.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-08-
|
11
|
+
date: 2017-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|