gitaly 0.12.1 → 0.13.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/blob_pb.rb +1 -0
- data/ruby/lib/gitaly/commit_pb.rb +9 -0
- data/ruby/lib/gitaly/commit_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: 9df2903d1621dd73cc68b98f2c6d31e66bab4876
|
4
|
+
data.tar.gz: 55e4e2a13be32ec5d6214f09f037e7738e4a4904
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fcd1e03bac6db91413c1ece141db4791a7155c7411228379b2fe5c968b0fa42b76834fd68e75078e64f19912ade208dbe69767ff69248eadfd57011754614147
|
7
|
+
data.tar.gz: df8e45f20b41d47aa68a0c4aac3ae9329639c9a179e9bbe4bc47533b57136261fc4bc78822ea24339da9811b87aba4ff538a52622d2c51cbab84c8c40423c7fe
|
data/ruby/lib/gitaly/blob_pb.rb
CHANGED
@@ -40,6 +40,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
40
40
|
add_message "gitaly.CommitsBetweenResponse" do
|
41
41
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
42
42
|
end
|
43
|
+
add_message "gitaly.CountCommitsRequest" do
|
44
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
45
|
+
optional :revision, :bytes, 2
|
46
|
+
end
|
47
|
+
add_message "gitaly.CountCommitsResponse" do
|
48
|
+
optional :count, :int32, 1
|
49
|
+
end
|
43
50
|
end
|
44
51
|
|
45
52
|
module Gitaly
|
@@ -50,4 +57,6 @@ module Gitaly
|
|
50
57
|
TreeEntryResponse::ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse.ObjectType").enummodule
|
51
58
|
CommitsBetweenRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenRequest").msgclass
|
52
59
|
CommitsBetweenResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenResponse").msgclass
|
60
|
+
CountCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsRequest").msgclass
|
61
|
+
CountCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsResponse").msgclass
|
53
62
|
end
|
@@ -17,6 +17,7 @@ module Gitaly
|
|
17
17
|
rpc :CommitIsAncestor, CommitIsAncestorRequest, CommitIsAncestorResponse
|
18
18
|
rpc :TreeEntry, TreeEntryRequest, stream(TreeEntryResponse)
|
19
19
|
rpc :CommitsBetween, CommitsBetweenRequest, stream(CommitsBetweenResponse)
|
20
|
+
rpc :CountCommits, CountCommitsRequest, CountCommitsResponse
|
20
21
|
end
|
21
22
|
|
22
23
|
Stub = Service.rpc_stub_class
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
@@ -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.
|
121
|
+
rubygems_version: 2.5.1
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: Auto-generated gRPC client for gitaly
|