event_store_client 2.0.1 → 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: 92e37b212f6c1cbdbc11e86031b157f5705c3800b706aff60c055ee74708801e
4
- data.tar.gz: 0f817ce23a6881b45a4522641273657da4cff42e65837993e2846a3e6b80da7d
3
+ metadata.gz: 3fef0e593742a28c3a6bec9d27294dc875ce54d33e2939bb95c81e6ff6d2d3e1
4
+ data.tar.gz: 276e2c01542be517300c1d3a47cd11d99988430a8fbf9533197433a8ea6a4fa1
5
5
  SHA512:
6
- metadata.gz: 43d3d0810e18543debe3d05b0a5bdbb25fb42cb40673b52ec22d4b027ada18b9182aa60f749d0036547655d3fb628bb3b70ad6d642b4453cff37e617692efb1f
7
- data.tar.gz: 9aa84cc98d57358e8d4501c4e0b9a9e95b1b6b694bdf4f50b7d2df89b49a2df78c3117d5a206a299e3337afa9f62c03e00f76fefad60bf61796098b8d99fbefe
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.1'
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.1
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
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.