tucana 0.0.72 → 0.0.73
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1299c52f13a22b06e365d4573b0bb76d175e835fb412a420b2dd3c6935a334b1
|
|
4
|
+
data.tar.gz: 33773e9d9b76b90ccdfaf1781e1089ab1985cefe32179867789c1daa01233236
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1368209b80875611420dda525074ecf0d936563a0e121ed0c7d30c0b9c4aa5244e851e8ef8374df6ad6a734360233bc33f9cb63033c0d12f22bd36ff5f580ab
|
|
7
|
+
data.tar.gz: cbf544c1d5fd207c2746f5af379e32c15e61de4f1f2f1ed73cad2e7cc92db184524ecb664d7f9e4996b304733438b9d5466b750dfb5c367942b3152f6dcd38f4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: aquila.execution.proto
|
|
4
|
+
|
|
5
|
+
require 'google/protobuf'
|
|
6
|
+
|
|
7
|
+
require_relative '../shared/shared.execution_result_pb'
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
descriptor_data = "\n\x16\x61quila.execution.proto\x12\x06\x61quila\x1a\x1dshared.execution_result.proto\"E\n\x10\x45xecutionRequest\x12\x31\n\x10\x65xecution_result\x18\x01 \x01(\x0b\x32\x17.shared.ExecutionResult\"$\n\x11\x45xecutionResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32S\n\x10\x45xecutionService\x12?\n\x06Update\x12\x18.aquila.ExecutionRequest\x1a\x19.aquila.ExecutionResponse\"\x00\x42\x11\xea\x02\x0eTucana::Aquilab\x06proto3"
|
|
11
|
+
|
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
14
|
+
|
|
15
|
+
module Tucana
|
|
16
|
+
module Aquila
|
|
17
|
+
ExecutionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ExecutionRequest").msgclass
|
|
18
|
+
ExecutionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.ExecutionResponse").msgclass
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
+
# Source: aquila.execution.proto for package 'Tucana.Aquila'
|
|
3
|
+
|
|
4
|
+
require 'grpc'
|
|
5
|
+
require_relative 'aquila.execution_pb'
|
|
6
|
+
|
|
7
|
+
module Tucana
|
|
8
|
+
module Aquila
|
|
9
|
+
module ExecutionService
|
|
10
|
+
class Service
|
|
11
|
+
|
|
12
|
+
include ::GRPC::GenericService
|
|
13
|
+
|
|
14
|
+
self.marshal_class_method = :encode
|
|
15
|
+
self.unmarshal_class_method = :decode
|
|
16
|
+
self.service_name = 'aquila.ExecutionService'
|
|
17
|
+
|
|
18
|
+
rpc :Update, ::Tucana::Aquila::ExecutionRequest, ::Tucana::Aquila::ExecutionResponse
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
Stub = Service.rpc_stub_class
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
data/lib/tucana/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tucana
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.73
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Niklas van Schrick
|
|
@@ -74,6 +74,8 @@ files:
|
|
|
74
74
|
- lib/tucana.rb
|
|
75
75
|
- lib/tucana/generated/aquila/aquila.action_pb.rb
|
|
76
76
|
- lib/tucana/generated/aquila/aquila.action_services_pb.rb
|
|
77
|
+
- lib/tucana/generated/aquila/aquila.execution_pb.rb
|
|
78
|
+
- lib/tucana/generated/aquila/aquila.execution_services_pb.rb
|
|
77
79
|
- lib/tucana/generated/aquila/aquila.module_pb.rb
|
|
78
80
|
- lib/tucana/generated/aquila/aquila.module_services_pb.rb
|
|
79
81
|
- lib/tucana/generated/aquila/aquila.runtime_status_pb.rb
|