gitaly 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/{protos/ruby → ruby}/.gitignore +0 -0
- data/{protos/ruby → ruby}/Gemfile +0 -0
- data/{protos/ruby → ruby}/LICENSE.txt +0 -0
- data/{protos/ruby → ruby}/README.md +0 -0
- data/{protos/ruby → ruby}/lib/gitaly.rb +0 -0
- data/{protos/ruby → ruby}/lib/gitaly/gitaly_pb.rb +7 -0
- data/{protos/ruby → ruby}/lib/gitaly/gitaly_services_pb.rb +14 -0
- data/{protos/ruby → ruby}/lib/gitaly/version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf32dc33d8a655df21694285eb1c5dc4936a2ef7
|
4
|
+
data.tar.gz: f4371554985b03b0e24506c2775d06a9887fb3a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d6183588560fcaca75e65071d7238a02ad7c2e3bb45cda5b08eebc05dbd769c16d0b326c18287f9207383b8ae679fe8b148d6062995150ae57b2e141bdf5cc5
|
7
|
+
data.tar.gz: d134973d569a3f0933b7350a217e059bb6323a531f00e9dbb301d48c6812bbf8be5ffc374645ec258e01a2891135c9b0f89c3a4c2c70cacd12302ce07f67abb5
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -13,10 +13,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
13
13
|
add_message "gitaly.Repository" do
|
14
14
|
optional :path, :string, 1
|
15
15
|
end
|
16
|
+
add_message "gitaly.PostReceiveRequest" do
|
17
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
18
|
+
end
|
19
|
+
add_message "gitaly.PostReceiveResponse" do
|
20
|
+
end
|
16
21
|
end
|
17
22
|
|
18
23
|
module Gitaly
|
19
24
|
InfoRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InfoRefsRequest").msgclass
|
20
25
|
InfoRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.InfoRefsResponse").msgclass
|
21
26
|
Repository = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Repository").msgclass
|
27
|
+
PostReceiveRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveRequest").msgclass
|
28
|
+
PostReceiveResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveResponse").msgclass
|
22
29
|
end
|
@@ -21,6 +21,20 @@ module Gitaly
|
|
21
21
|
rpc :InfoRefsReceivePack, InfoRefsRequest, stream(InfoRefsResponse)
|
22
22
|
end
|
23
23
|
|
24
|
+
Stub = Service.rpc_stub_class
|
25
|
+
end
|
26
|
+
module Notifications
|
27
|
+
class Service
|
28
|
+
|
29
|
+
include GRPC::GenericService
|
30
|
+
|
31
|
+
self.marshal_class_method = :encode
|
32
|
+
self.unmarshal_class_method = :decode
|
33
|
+
self.service_name = 'gitaly.Notifications'
|
34
|
+
|
35
|
+
rpc :PostReceive, PostReceiveRequest, PostReceiveResponse
|
36
|
+
end
|
37
|
+
|
24
38
|
Stub = Service.rpc_stub_class
|
25
39
|
end
|
26
40
|
end
|
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.2.
|
4
|
+
version: 0.2.1
|
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-02-
|
11
|
+
date: 2017-02-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -73,14 +73,14 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
-
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
80
|
-
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
-
|
76
|
+
- ruby/.gitignore
|
77
|
+
- ruby/Gemfile
|
78
|
+
- ruby/LICENSE.txt
|
79
|
+
- ruby/README.md
|
80
|
+
- ruby/lib/gitaly.rb
|
81
|
+
- ruby/lib/gitaly/gitaly_pb.rb
|
82
|
+
- ruby/lib/gitaly/gitaly_services_pb.rb
|
83
|
+
- ruby/lib/gitaly/version.rb
|
84
84
|
homepage: https://gitlab.com/gitlab-org/gitaly
|
85
85
|
licenses:
|
86
86
|
- MIT
|
@@ -88,7 +88,7 @@ metadata: {}
|
|
88
88
|
post_install_message:
|
89
89
|
rdoc_options: []
|
90
90
|
require_paths:
|
91
|
-
-
|
91
|
+
- ruby/lib
|
92
92
|
required_ruby_version: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - ">="
|