gitaly 0.14.0 → 0.15.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/commit_pb.rb +25 -0
- data/ruby/lib/gitaly/commit_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +2 -2
- 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: fa0a905100b39ccf7a0bf8c2f554bfdd9b291079
|
4
|
+
data.tar.gz: 459b6c49250d59e79437222dcc1c96c544d78650
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0aac672970cf5b48a39d480a09059650baa2852bdbf2878d3e3beeae927a1f8c4231df08630990c6d1311cff24faa2832bd82f73f18e0c79e9fadbfbe032650
|
7
|
+
data.tar.gz: 1e3eb00ef1b854ab69582f0868620b56c09ed0326f829a8edcc04e8447cbcddf3d81459bf81c0a75f0957e3783cf7b65ef05e233937f8e1dd510a5aec1c35451
|
@@ -47,6 +47,27 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
47
47
|
add_message "gitaly.CountCommitsResponse" do
|
48
48
|
optional :count, :int32, 1
|
49
49
|
end
|
50
|
+
add_message "gitaly.TreeEntry" do
|
51
|
+
optional :oid, :string, 1
|
52
|
+
optional :root_oid, :string, 2
|
53
|
+
optional :path, :bytes, 3
|
54
|
+
optional :type, :enum, 4, "gitaly.TreeEntry.EntryType"
|
55
|
+
optional :mode, :int32, 5
|
56
|
+
optional :commit_oid, :string, 6
|
57
|
+
end
|
58
|
+
add_enum "gitaly.TreeEntry.EntryType" do
|
59
|
+
value :BLOB, 0
|
60
|
+
value :TREE, 1
|
61
|
+
value :COMMIT, 3
|
62
|
+
end
|
63
|
+
add_message "gitaly.GetTreeEntriesRequest" do
|
64
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
65
|
+
optional :revision, :bytes, 2
|
66
|
+
optional :path, :bytes, 3
|
67
|
+
end
|
68
|
+
add_message "gitaly.GetTreeEntriesResponse" do
|
69
|
+
repeated :entries, :message, 1, "gitaly.TreeEntry"
|
70
|
+
end
|
50
71
|
end
|
51
72
|
|
52
73
|
module Gitaly
|
@@ -59,4 +80,8 @@ module Gitaly
|
|
59
80
|
CommitsBetweenResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenResponse").msgclass
|
60
81
|
CountCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsRequest").msgclass
|
61
82
|
CountCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsResponse").msgclass
|
83
|
+
TreeEntry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntry").msgclass
|
84
|
+
TreeEntry::EntryType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntry.EntryType").enummodule
|
85
|
+
GetTreeEntriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTreeEntriesRequest").msgclass
|
86
|
+
GetTreeEntriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTreeEntriesResponse").msgclass
|
62
87
|
end
|
@@ -18,6 +18,7 @@ module Gitaly
|
|
18
18
|
rpc :TreeEntry, TreeEntryRequest, stream(TreeEntryResponse)
|
19
19
|
rpc :CommitsBetween, CommitsBetweenRequest, stream(CommitsBetweenResponse)
|
20
20
|
rpc :CountCommits, CountCommitsRequest, CountCommitsResponse
|
21
|
+
rpc :GetTreeEntries, GetTreeEntriesRequest, stream(GetTreeEntriesResponse)
|
21
22
|
end
|
22
23
|
|
23
24
|
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.15.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.6.10
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: Auto-generated gRPC client for gitaly
|