gitaly 0.8.0 → 0.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dc285ad849f4d0624227d7702f559f93000013a0
4
- data.tar.gz: 302dc06d059eaea9d6dc4c36e5f7f54fe62bc4a7
3
+ metadata.gz: 3ec7c35cc0d07eff5dc56de95fd8a244551c6bea
4
+ data.tar.gz: c8178797bfa298681ab4387d38dc1d26b486b368
5
5
  SHA512:
6
- metadata.gz: 5ccbf188eaac9a3dff2bbe91a8205739a2c8674d193067ff36734b11350d1114432c6c69193bf3c8e8f6a13a862feaf0e09a774a560775266d387a5a39b3f2b0
7
- data.tar.gz: 332eca5aa9f48be77309324b9c22b43ae5b8252caecb734c3fc66e49d1b453ca309d604fb21e137c36444228d7ba402cdc0405663085364bf82df542e7756002
6
+ metadata.gz: 6e219930e6a1898d4ab9346a381232708c2ffdfcd0528eb641f13f711db5a2465dfe80f6b870f8c51caa1ae2ffab320d1db697a740d71052061207387f1d11cc
7
+ data.tar.gz: bddcec4c5f54782385bcb12b4dfd47caac42b23fa954cc7888955572ea47496acaf499a4d3b001bff025b04b673ccc1ac641322f8d132edba14dea4cdfb0dc0c
@@ -13,9 +13,31 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
13
13
  add_message "gitaly.CommitIsAncestorResponse" do
14
14
  optional :value, :bool, 1
15
15
  end
16
+ add_message "gitaly.TreeEntryRequest" do
17
+ optional :repository, :message, 1, "gitaly.Repository"
18
+ optional :revision, :bytes, 2
19
+ optional :path, :bytes, 3
20
+ optional :limit, :int64, 4
21
+ end
22
+ add_message "gitaly.TreeEntryResponse" do
23
+ optional :type, :enum, 1, "gitaly.TreeEntryResponse.ObjectType"
24
+ optional :oid, :string, 2
25
+ optional :size, :int64, 3
26
+ optional :mode, :int32, 4
27
+ optional :data, :bytes, 5
28
+ end
29
+ add_enum "gitaly.TreeEntryResponse.ObjectType" do
30
+ value :COMMIT, 0
31
+ value :BLOB, 1
32
+ value :TREE, 2
33
+ value :TAG, 3
34
+ end
16
35
  end
17
36
 
18
37
  module Gitaly
19
38
  CommitIsAncestorRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitIsAncestorRequest").msgclass
20
39
  CommitIsAncestorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitIsAncestorResponse").msgclass
40
+ TreeEntryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryRequest").msgclass
41
+ TreeEntryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse").msgclass
42
+ TreeEntryResponse::ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse.ObjectType").enummodule
21
43
  end
@@ -15,6 +15,7 @@ module Gitaly
15
15
  self.service_name = 'gitaly.Commit'
16
16
 
17
17
  rpc :CommitIsAncestor, CommitIsAncestorRequest, CommitIsAncestorResponse
18
+ rpc :TreeEntry, TreeEntryRequest, stream(TreeEntryResponse)
18
19
  end
19
20
 
20
21
  Stub = Service.rpc_stub_class
@@ -5,7 +5,6 @@ require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
7
  add_message "gitaly.Repository" do
8
- optional :path, :string, 1
9
8
  optional :storage_name, :string, 2
10
9
  optional :relative_path, :string, 3
11
10
  end
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.8.0"
3
+ VERSION = "0.9.0"
4
4
  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.8.0
4
+ version: 0.9.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-05-31 00:00:00.000000000 Z
11
+ date: 2017-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf