gitaly 0.11.0 → 0.12.1

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: b8ec32de32e7238c2a3575b1ea8a85d46f92c00e
4
- data.tar.gz: 66c31e5880a4ae7134e724eb093454019e6684fd
3
+ metadata.gz: 1268a541077b7584a2af1c54e95b822472355b60
4
+ data.tar.gz: 463dd6de7f01677069185cc653dc3319a1d09826
5
5
  SHA512:
6
- metadata.gz: f2054b19d827b489f21c74e9c7ebba1f74ba9ad7b43bbde863b30f44a629aef6841bb59fcf54acb32d405a6119d2f54b2ff092c6956a8596932e6806b92980f4
7
- data.tar.gz: 7e27e25a48eeb552fef693a48393e451216bf63ca840f4a9388548f85e660b513f0e8b0c5abbdf97a6bb4e842d2841d23a18a7301e0e66452ea0ef6215742a16
6
+ metadata.gz: 2bd9a1e4e848172742c2bdd5cfa5379dd556eca14961d8fae6a2494938946e40b753755f45e427c72339d9f3322e1e1614ed411c1190be5b9bab29568207e513
7
+ data.tar.gz: dbf47e87c253557428c23bc6f1108b7f897767596c35b24b39c8f30c429134e3aab3a07a559ea6f81d9af6377de368ef92b4c71455ac55af8ff7fd72182d7852
@@ -3,6 +3,8 @@ $:.unshift(File.expand_path('../gitaly', __FILE__))
3
3
 
4
4
  require 'gitaly/version'
5
5
 
6
+ require 'gitaly/blob_services_pb'
7
+
6
8
  require 'gitaly/commit_services_pb'
7
9
 
8
10
  require 'gitaly/deprecated-services_services_pb'
@@ -0,0 +1,21 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: blob.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'shared_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "gitaly.GetBlobRequest" do
9
+ optional :repository, :message, 1, "gitaly.Repository"
10
+ optional :oid, :string, 2
11
+ end
12
+ add_message "gitaly.GetBlobResponse" do
13
+ optional :size, :int64, 1
14
+ optional :data, :bytes, 2
15
+ end
16
+ end
17
+
18
+ module Gitaly
19
+ GetBlobRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobRequest").msgclass
20
+ GetBlobResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobResponse").msgclass
21
+ end
@@ -0,0 +1,25 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: blob.proto for package 'gitaly'
3
+
4
+ require 'grpc'
5
+ require 'blob_pb'
6
+
7
+ module Gitaly
8
+ module BlobService
9
+ class Service
10
+
11
+ include GRPC::GenericService
12
+
13
+ self.marshal_class_method = :encode
14
+ self.unmarshal_class_method = :decode
15
+ self.service_name = 'gitaly.BlobService'
16
+
17
+ # GetBlob returns the contents of a blob object referenced by its object
18
+ # ID. We use a stream to return a chunked arbitrarily large binary
19
+ # response
20
+ rpc :GetBlob, GetBlobRequest, stream(GetBlobResponse)
21
+ end
22
+
23
+ Stub = Service.rpc_stub_class
24
+ end
25
+ end
@@ -4,6 +4,7 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  require 'shared_pb'
7
+ require 'google/protobuf/timestamp_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_message "gitaly.FindDefaultBranchNameRequest" do
9
10
  optional :repository, :message, 1, "gitaly.Repository"
@@ -45,7 +46,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
45
46
  end
46
47
  add_message "gitaly.FindLocalBranchResponse" do
47
48
  optional :name, :bytes, 1
48
- optional :target, :message, 2, "gitaly.GitCommit"
49
+ optional :commit_id, :string, 2
50
+ optional :commit_subject, :bytes, 3
51
+ optional :commit_author, :message, 4, "gitaly.FindLocalBranchCommitAuthor"
52
+ optional :commit_committer, :message, 5, "gitaly.FindLocalBranchCommitAuthor"
53
+ end
54
+ add_message "gitaly.FindLocalBranchCommitAuthor" do
55
+ optional :name, :bytes, 1
56
+ optional :email, :bytes, 2
57
+ optional :date, :message, 3, "google.protobuf.Timestamp"
49
58
  end
50
59
  end
51
60
 
@@ -62,4 +71,5 @@ module Gitaly
62
71
  FindLocalBranchesRequest::SortBy = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest.SortBy").enummodule
63
72
  FindLocalBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesResponse").msgclass
64
73
  FindLocalBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchResponse").msgclass
74
+ FindLocalBranchCommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchCommitAuthor").msgclass
65
75
  end
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.11.0"
3
+ VERSION = "0.12.1"
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.11.0
4
+ version: 0.12.1
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-06-28 00:00:00.000000000 Z
11
+ date: 2017-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -78,6 +78,8 @@ files:
78
78
  - ruby/LICENSE.txt
79
79
  - ruby/README.md
80
80
  - ruby/lib/gitaly.rb
81
+ - ruby/lib/gitaly/blob_pb.rb
82
+ - ruby/lib/gitaly/blob_services_pb.rb
81
83
  - ruby/lib/gitaly/commit_pb.rb
82
84
  - ruby/lib/gitaly/commit_services_pb.rb
83
85
  - ruby/lib/gitaly/deprecated-services_pb.rb