gitaly 0.15.0 → 0.16.0
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/ruby/lib/gitaly/commit_pb.rb +29 -0
- data/ruby/lib/gitaly/commit_services_pb.rb +3 -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: ce37ebd000e9500cb4dfd96b947a0531ac86ae34
|
4
|
+
data.tar.gz: 4a1fc7ebbf8a4d261fefd350d5ab17300569714f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 895b3a135b824b3308d549714e03096b18b62557ad46c7c4f0f9227d56b4b014c7e0ee58c8c72b3fe51ab69890521272428ea50e41da534796e70cadfb0fdd8f
|
7
|
+
data.tar.gz: 5b9201edad4a8f766fe1d3b31938f604233d89dec483f6e199aba8ccd78e23e526b597e564a30949a47656cadb42fd0c426ea81f38fb8bb404f44d1c7f2b2a7e
|
@@ -5,6 +5,15 @@ require 'google/protobuf'
|
|
5
5
|
|
6
6
|
require 'shared_pb'
|
7
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "gitaly.CommitStatsRequest" do
|
9
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
10
|
+
optional :revision, :bytes, 2
|
11
|
+
end
|
12
|
+
add_message "gitaly.CommitStatsResponse" do
|
13
|
+
optional :oid, :string, 1
|
14
|
+
optional :additions, :int32, 2
|
15
|
+
optional :deletions, :int32, 3
|
16
|
+
end
|
8
17
|
add_message "gitaly.CommitIsAncestorRequest" do
|
9
18
|
optional :repository, :message, 1, "gitaly.Repository"
|
10
19
|
optional :ancestor_id, :string, 2
|
@@ -68,9 +77,25 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
68
77
|
add_message "gitaly.GetTreeEntriesResponse" do
|
69
78
|
repeated :entries, :message, 1, "gitaly.TreeEntry"
|
70
79
|
end
|
80
|
+
add_message "gitaly.ListFilesRequest" do
|
81
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
82
|
+
optional :revision, :bytes, 2
|
83
|
+
end
|
84
|
+
add_message "gitaly.ListFilesResponse" do
|
85
|
+
repeated :paths, :bytes, 1
|
86
|
+
end
|
87
|
+
add_message "gitaly.FindCommitRequest" do
|
88
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
89
|
+
optional :revision, :bytes, 2
|
90
|
+
end
|
91
|
+
add_message "gitaly.FindCommitResponse" do
|
92
|
+
optional :commit, :message, 1, "gitaly.GitCommit"
|
93
|
+
end
|
71
94
|
end
|
72
95
|
|
73
96
|
module Gitaly
|
97
|
+
CommitStatsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitStatsRequest").msgclass
|
98
|
+
CommitStatsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitStatsResponse").msgclass
|
74
99
|
CommitIsAncestorRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitIsAncestorRequest").msgclass
|
75
100
|
CommitIsAncestorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitIsAncestorResponse").msgclass
|
76
101
|
TreeEntryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryRequest").msgclass
|
@@ -84,4 +109,8 @@ module Gitaly
|
|
84
109
|
TreeEntry::EntryType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntry.EntryType").enummodule
|
85
110
|
GetTreeEntriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTreeEntriesRequest").msgclass
|
86
111
|
GetTreeEntriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTreeEntriesResponse").msgclass
|
112
|
+
ListFilesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListFilesRequest").msgclass
|
113
|
+
ListFilesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListFilesResponse").msgclass
|
114
|
+
FindCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitRequest").msgclass
|
115
|
+
FindCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitResponse").msgclass
|
87
116
|
end
|
@@ -19,6 +19,9 @@ module Gitaly
|
|
19
19
|
rpc :CommitsBetween, CommitsBetweenRequest, stream(CommitsBetweenResponse)
|
20
20
|
rpc :CountCommits, CountCommitsRequest, CountCommitsResponse
|
21
21
|
rpc :GetTreeEntries, GetTreeEntriesRequest, stream(GetTreeEntriesResponse)
|
22
|
+
rpc :ListFiles, ListFilesRequest, stream(ListFilesResponse)
|
23
|
+
rpc :FindCommit, FindCommitRequest, FindCommitResponse
|
24
|
+
rpc :CommitStats, CommitStatsRequest, CommitStatsResponse
|
22
25
|
end
|
23
26
|
|
24
27
|
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.16.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-07-
|
11
|
+
date: 2017-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|