redis-stream-wrapper 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 856ee141c6da05fb051ba1b24ab5865254b3e92408c91aa200d9a53207fb39c4
4
- data.tar.gz: 97e7394a96d1105f252bcfbddd9368c4e720725239f3e78ee2e8545b3fc8d732
3
+ metadata.gz: 5e012ebfe60db9098c7e311bac9e2203025d9ce6ff276269f21425846416e42b
4
+ data.tar.gz: 9502822a8b5105240bb152930e8db63fe71169c0255ed04c6e108de0a7ef6821
5
5
  SHA512:
6
- metadata.gz: cffcbce3991d63e1569444fc5cc6cd6937f96a6ea26329f6090c245e25a827bb1864bfa70c3849a61da350d7119297f1734ec744feb6003e07d4879cbc578465
7
- data.tar.gz: dc6779472068739485e28bb312cc71ca0361cad4dbcf5eae693e8a3f395d1787ffce56b6ab5bfdc7c28198e75de19b27f0769574bb50b9abd0780f9dbe99aca2
6
+ metadata.gz: 8b353fcd2701ee3435938a64079bf58882bdb6940c27e17cd85070471e459dfbb4ca0bfc21e654bde163a936b542732cfa7deeb19a3b9dfbcbcfc275dfaaf212
7
+ data.tar.gz: 570b636b21b31c847c14145f3c3f2a2db63868b76e9522a0c70eac1685b9d73f60391147a3f21f1626a6d98c44092f27fda8dc77786f5ecf9536979c8bff8fe0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- redis-stream-wrapper (0.1.0)
4
+ redis-stream-wrapper (0.1.1)
5
5
  dry-struct
6
6
 
7
7
  GEM
@@ -4,7 +4,7 @@ class Redis
4
4
  module Stream
5
5
  class Wrapper
6
6
  class Message < ::Dry::Struct::Value
7
- Types = ::Dry.Types
7
+ Types = ::Dry.Types(default: :nominal)
8
8
  attribute :stream, Types::Coercible::String
9
9
  attribute :id, Types::Coercible::String.optional.default('*', shared: true)
10
10
  attribute :payload, Types::Hash.map(Types::Coercible::String, Types::Coercible::String)
@@ -1,7 +1,7 @@
1
1
  class Redis
2
2
  module Stream
3
3
  class Wrapper
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-stream-wrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexandre Del Vecchio