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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40367b41a84ea243a1c644d553f4e76337644e2459b214a7167fdd90a01a468e
4
- data.tar.gz: 44116e949f877507f590018a6df4fc5d2d4cfb39b69398faf4c26891534512e5
3
+ metadata.gz: 18607d448ca237f8ab1e47e75f9bee8711f32411d2ba4ff1bbddf7cf03c6cb36
4
+ data.tar.gz: 777266b06d1aa008c4ccf2b2e63ea14dca9c4a2b3d61aea5bf33a32584763aad
5
5
  SHA512:
6
- metadata.gz: 847a4f969609ae5fb0f706041ef151e65a245bdb1e6106bdd22eb57775ec3577305148cbd60d85e04eeebd627173d1a98c2b3761ca2a48ba01b7829299c93cc7
7
- data.tar.gz: ee9a57d59de503a8ef93fbfa08881f9a8b7c1cca2c8bb4547356816c66525f9ec79a603463b3cf456e045925c25ccbcffa280ded86a136d83ec9d01fbcdf46b7
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 client
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
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative '../dapr'
4
+ require 'json'
4
5
  require 'semantic_logger'
5
6
  require 'dapr-client'
6
7
  require 'dapr/proto/runtime/v1/dapr_services_pb'
data/lib/dapr/version.rb CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubyists
4
4
  module Dapr
5
- VERSION = '0.1.5'
5
+ VERSION = '0.1.7'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dapr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tj (bougyman) Vanderpoel