gitaly-proto 0.78.0 → 0.79.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.rb +2 -0
- data/ruby/lib/gitaly/operations_pb.rb +0 -1
- data/ruby/lib/gitaly/server_pb.rb +24 -0
- data/ruby/lib/gitaly/server_services_pb.rb +23 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a96c6212fabca693e4983074b17e306e9b0e165
|
4
|
+
data.tar.gz: 997aa8aa0d5a2ab4369dae09ae3abd1e315ed9a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c8c69a5cead1cad25b52582089372ea88c9a3b1e026bd0ed89ae467afa000b28bee918000dc8d1df1758ca90679598a0e8a05c3260e3aa26344d2325700cd2e
|
7
|
+
data.tar.gz: c1ac82d029f1b01bc662524d293e1dc885e9f2a3dab94b2797e0c8fec0b07ce615c188bd1dfa581634e7e76d8a4d98ecfdf417a814562bbaff6c1c55111ec4d7
|
data/ruby/lib/gitaly.rb
CHANGED
@@ -138,7 +138,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
138
138
|
add_message "gitaly.UserCommitFilesResponse" do
|
139
139
|
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
140
140
|
optional :index_error, :string, 2
|
141
|
-
optional :pre_receive_error, :string, 3
|
142
141
|
end
|
143
142
|
add_message "gitaly.UserRebaseRequest" do
|
144
143
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: server.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
+
add_message "gitaly.ServerVersionRequest" do
|
8
|
+
end
|
9
|
+
add_message "gitaly.ServerVersionResponse" do
|
10
|
+
optional :version, :string, 1
|
11
|
+
end
|
12
|
+
add_message "gitaly.ServerGitVersionRequest" do
|
13
|
+
end
|
14
|
+
add_message "gitaly.ServerGitVersionResponse" do
|
15
|
+
optional :version, :string, 1
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
module Gitaly
|
20
|
+
ServerVersionRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServerVersionRequest").msgclass
|
21
|
+
ServerVersionResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServerVersionResponse").msgclass
|
22
|
+
ServerGitVersionRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServerGitVersionRequest").msgclass
|
23
|
+
ServerGitVersionResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServerGitVersionResponse").msgclass
|
24
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: server.proto for package 'gitaly'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'server_pb'
|
6
|
+
|
7
|
+
module Gitaly
|
8
|
+
module ServerService
|
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.ServerService'
|
16
|
+
|
17
|
+
rpc :ServerVersion, ServerVersionRequest, ServerVersionResponse
|
18
|
+
rpc :ServerGitVersion, ServerGitVersionRequest, ServerGitVersionResponse
|
19
|
+
end
|
20
|
+
|
21
|
+
Stub = Service.rpc_stub_class
|
22
|
+
end
|
23
|
+
end
|
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.79.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-01-
|
11
|
+
date: 2018-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -71,6 +71,8 @@ files:
|
|
71
71
|
- ruby/lib/gitaly/remote_services_pb.rb
|
72
72
|
- ruby/lib/gitaly/repository-service_pb.rb
|
73
73
|
- ruby/lib/gitaly/repository-service_services_pb.rb
|
74
|
+
- ruby/lib/gitaly/server_pb.rb
|
75
|
+
- ruby/lib/gitaly/server_services_pb.rb
|
74
76
|
- ruby/lib/gitaly/shared_pb.rb
|
75
77
|
- ruby/lib/gitaly/smarthttp_pb.rb
|
76
78
|
- ruby/lib/gitaly/smarthttp_services_pb.rb
|
@@ -99,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
101
|
version: '0'
|
100
102
|
requirements: []
|
101
103
|
rubyforge_project:
|
102
|
-
rubygems_version: 2.
|
104
|
+
rubygems_version: 2.6.14
|
103
105
|
signing_key:
|
104
106
|
specification_version: 4
|
105
107
|
summary: Auto-generated gRPC client for gitaly
|