dapr 0.1.5 → 0.1.7
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/dapr/client/publisher.rb +4 -2
- data/lib/dapr/client.rb +1 -0
- data/lib/dapr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18607d448ca237f8ab1e47e75f9bee8711f32411d2ba4ff1bbddf7cf03c6cb36
|
4
|
+
data.tar.gz: 777266b06d1aa008c4ccf2b2e63ea14dca9c4a2b3d61aea5bf33a32584763aad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83c76522d026e1096c0ac783a4a6248ee21d2cd11fbad0300e43c92c7003a181d1ee072413d1e3fb63c5bdcd3757c3a5cec0d10428115ebb6767711d07777e52
|
7
|
+
data.tar.gz: 5553b18c2db27fb3d76bfd2c6f09f1b12f0fb6c94c3ae35541743484841aa4641725f065b9c245cb80db75bce939be5e53ae08aa328c36a3af9a1a50974455c7
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative '../client'
|
4
|
+
|
3
5
|
module Rubyists
|
4
6
|
module Dapr
|
5
7
|
module Client
|
@@ -8,8 +10,8 @@ module Rubyists
|
|
8
10
|
# Include the client module
|
9
11
|
include Client
|
10
12
|
|
11
|
-
# The name of the pubsub component, and the
|
12
|
-
attr_reader :pubsub_name, :client
|
13
|
+
# The name of the pubsub component, the client, and the serialization to use
|
14
|
+
attr_reader :pubsub_name, :client, :serialization
|
13
15
|
|
14
16
|
# The proto class for the publish event request
|
15
17
|
Proto = ::Dapr::Proto::Runtime::V1::PublishEventRequest
|
data/lib/dapr/client.rb
CHANGED
data/lib/dapr/version.rb
CHANGED