hgitaly 2.11.0 → 17.8.2
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/lib/hgitaly/mercurial-aux-git_pb.rb +15 -0
- data/lib/hgitaly/mercurial-aux-git_services_pb.rb +29 -0
- data/lib/hgitaly/version.rb +1 -1
- data/lib/hgitaly.rb +2 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1ee6b53492f7a571d309bf0f8eb0f50795f13cf087c23e193ae68d74b5d98da
|
4
|
+
data.tar.gz: e4a2a90abf451a41d36a59b5b607cb95483ee7546d5330c8ee438e573b6408f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b26c1a743f712f9b7641337da750f803a9e5614597875d62fd9614a833f8fad6bab0f0eafd02f3f28ae996f20e27281db4bcbc18cc1acec23604eb9702d34979
|
7
|
+
data.tar.gz: 51ff4327d3859672ffe1e41bbde1c29a3f47c93affc9385415a6b64f3f900873ec6beb199c8cdd832caae606c69e31ea2b5419682bb7678d5f097751d2fa7828
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: mercurial-aux-git.proto
|
3
|
+
|
4
|
+
require 'lint_pb'
|
5
|
+
require 'shared_pb'
|
6
|
+
require 'repository_pb'
|
7
|
+
require 'google/protobuf'
|
8
|
+
|
9
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
+
add_file("mercurial-aux-git.proto", :syntax => :proto3) do
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
module Hgitaly
|
15
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: mercurial-aux-git.proto for package 'hgitaly'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'mercurial-aux-git_pb'
|
6
|
+
|
7
|
+
module Hgitaly
|
8
|
+
module MercurialAuxGitService
|
9
|
+
# Methods working on auxiliary Git repositories
|
10
|
+
#
|
11
|
+
# The auxiliary Git repositories are mostly meant to support mirroring
|
12
|
+
# to external Git services.
|
13
|
+
# These are set aside so that Gitaly does not handle them.
|
14
|
+
class Service
|
15
|
+
|
16
|
+
include ::GRPC::GenericService
|
17
|
+
|
18
|
+
self.marshal_class_method = :encode
|
19
|
+
self.unmarshal_class_method = :decode
|
20
|
+
self.service_name = 'hgitaly.MercurialAuxGitService'
|
21
|
+
|
22
|
+
rpc :AuxGitCreateBundle, ::Gitaly::CreateBundleRequest, stream(::Gitaly::CreateBundleResponse)
|
23
|
+
rpc :AuxGitCreateFromBundle, stream(::Gitaly::CreateRepositoryFromBundleRequest), ::Gitaly::CreateRepositoryFromBundleResponse
|
24
|
+
rpc :AuxGitRepositorySize, ::Gitaly::RepositorySizeRequest, ::Gitaly::RepositorySizeResponse
|
25
|
+
end
|
26
|
+
|
27
|
+
Stub = Service.rpc_stub_class
|
28
|
+
end
|
29
|
+
end
|
data/lib/hgitaly/version.rb
CHANGED
data/lib/hgitaly.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hgitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 17.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Georges Racinet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -47,6 +47,8 @@ extensions: []
|
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
49
|
- lib/hgitaly.rb
|
50
|
+
- lib/hgitaly/mercurial-aux-git_pb.rb
|
51
|
+
- lib/hgitaly/mercurial-aux-git_services_pb.rb
|
50
52
|
- lib/hgitaly/mercurial-changeset_pb.rb
|
51
53
|
- lib/hgitaly/mercurial-changeset_services_pb.rb
|
52
54
|
- lib/hgitaly/mercurial-operations_pb.rb
|