event_store_client 2.0.0 → 2.0.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: 171c9a5524c70a76dacc682fafd219139c4e845c997b59aa3dd26ea63851bd84
4
- data.tar.gz: ff53343140523967227696e5cdca580ce7dd8d1a3ab750ac88438d7bb79808b7
3
+ metadata.gz: 3fef0e593742a28c3a6bec9d27294dc875ce54d33e2939bb95c81e6ff6d2d3e1
4
+ data.tar.gz: 276e2c01542be517300c1d3a47cd11d99988430a8fbf9533197433a8ea6a4fa1
5
5
  SHA512:
6
- metadata.gz: 16d7f5ac50fe26de21c289ea236543f96636b5369551724b4284f4f8b3b88de9cf3ab2c5c15df49796ebec7b0129e9c361102d1b6a735c8cafd7c18ed9a4ef7a
7
- data.tar.gz: fda744bf5c8c5bf0c03377e02e303fefe53bfea4ce0abb41923507bc515d9c6d45f0a7966386268a9ac70d58d430b98c5a7f90fb4729f4788f629f16f3719ea3
6
+ metadata.gz: b24353eafe946a92cd14b3b4efb74e22f384b082dc83c8e3852ee596c345f08dab5fb3e5dfb13ed07e961c834d6c0a0b1d7a242fdd295aebd460619cbe7594a5
7
+ data.tar.gz: 1fd463c026aa3a8d81edf95fcb43488637cdcd22b75226d16e3abfca0da52c7ddc5c4e3566692afd8ac86c62c7705190568b188a22f51e7945e4c4d8bd2c9029
@@ -1,3 +1,5 @@
1
+ # @title Appending events
2
+
1
3
  # Append your first event
2
4
 
3
5
  ## Append your first event
@@ -1,3 +1,5 @@
1
+ # @title Catch-up subscriptions
2
+
1
3
  # Catch-up subscriptions
2
4
 
3
5
  Subscriptions allow you to subscribe to a stream and receive notifications about new events added to the stream.
@@ -1,3 +1,5 @@
1
+ # @title Configuration
2
+
1
3
  # Configuration
2
4
 
3
5
  Currently only one setup is supported. For example, you can't configure a connection to multiple clusters.
@@ -1,3 +1,5 @@
1
+ # @title Deleting streams
2
+
1
3
  # Deleting streams
2
4
 
3
5
  ## Soft deleting streams
@@ -1,3 +1,5 @@
1
+ # @title Encrypting events
2
+
1
3
  # Encrypting events
2
4
 
3
5
  To encrypt/decrypt events payload, you can use an encrypted mapper.
@@ -1,3 +1,5 @@
1
+ # @title Linking events
2
+
1
3
  # Linking events
2
4
 
3
5
  ## Linking single event
@@ -1,3 +1,5 @@
1
+ # @title Reading events
2
+
1
3
  # Reading events
2
4
 
3
5
  ## Reading from a stream
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EventStoreClient
4
- VERSION = '2.0.0'
4
+ VERSION = '2.0.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: event_store_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Wilgosz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-22 00:00:00.000000000 Z
11
+ date: 2022-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-configurable
@@ -185,7 +185,6 @@ executables: []
185
185
  extensions: []
186
186
  extra_rdoc_files: []
187
187
  files:
188
- - MIT-LICENSE
189
188
  - README.md
190
189
  - Rakefile
191
190
  - docs/appending_events.md
@@ -281,7 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
281
280
  - !ruby/object:Gem::Version
282
281
  version: '0'
283
282
  requirements: []
284
- rubygems_version: 3.1.6
283
+ rubygems_version: 3.3.7
285
284
  signing_key:
286
285
  specification_version: 4
287
286
  summary: Ruby integration for https://eventstore.org
data/MIT-LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright 2019 Sebastian Wilgosz
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.