gitaly 0.27.0 → 0.28.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: 2cf3a8236325fe20906b285c858964fccf80bc74
|
4
|
+
data.tar.gz: d98dd75d5407eaebbac941ea7b39e62879144470
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c833fdcb7a3dd772a36503414d79a7eb0248cdbfe3ff5dedb4947bec5aa8fc583ee8c35525049532425ae98928b3490495277c4a951ebda2b897400c553ace7
|
7
|
+
data.tar.gz: bca0b05cdcc8d318c2bd1bd5a824164be8f8700ad5b14758c492112099fb19e9dc4260ccc07c0860187679852595f0aa1edefc244ffadef6884b82e6e82ce6b7
|
@@ -40,6 +40,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
40
40
|
end
|
41
41
|
add_message "gitaly.ApplyGitattributesResponse" do
|
42
42
|
end
|
43
|
+
add_message "gitaly.FetchRemoteRequest" do
|
44
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
45
|
+
optional :remote, :string, 2
|
46
|
+
optional :force, :bool, 3
|
47
|
+
optional :no_tags, :bool, 4
|
48
|
+
optional :timeout, :int32, 5
|
49
|
+
end
|
50
|
+
add_message "gitaly.FetchRemoteResponse" do
|
51
|
+
end
|
43
52
|
end
|
44
53
|
|
45
54
|
module Gitaly
|
@@ -55,4 +64,6 @@ module Gitaly
|
|
55
64
|
RepositorySizeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeResponse").msgclass
|
56
65
|
ApplyGitattributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesRequest").msgclass
|
57
66
|
ApplyGitattributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesResponse").msgclass
|
67
|
+
FetchRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchRemoteRequest").msgclass
|
68
|
+
FetchRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchRemoteResponse").msgclass
|
58
69
|
end
|
@@ -20,6 +20,7 @@ module Gitaly
|
|
20
20
|
rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
|
21
21
|
rpc :RepositorySize, RepositorySizeRequest, RepositorySizeResponse
|
22
22
|
rpc :ApplyGitattributes, ApplyGitattributesRequest, ApplyGitattributesResponse
|
23
|
+
rpc :FetchRemote, FetchRemoteRequest, FetchRemoteResponse
|
23
24
|
# Deprecated, use the RepositoryExists RPC instead.
|
24
25
|
rpc :Exists, RepositoryExistsRequest, RepositoryExistsResponse
|
25
26
|
end
|
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.28.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-10 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.2
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: Auto-generated gRPC client for gitaly
|