simple_event_sourcing 1.0.0 → 1.0.1
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/.gitignore +0 -0
- data/.rspec +0 -0
- data/.simplecov +0 -0
- data/.travis.yml +0 -0
- data/CODE_OF_CONDUCT.md +0 -0
- data/Dockerfile +0 -0
- data/Gemfile +0 -0
- data/Gemfile.lock +1 -1
- data/LICENSE.txt +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/docker-compose.yml +0 -0
- data/lib/simple_event_sourcing.rb +0 -0
- data/lib/simple_event_sourcing/aggregate_root/base.rb +1 -1
- data/lib/simple_event_sourcing/aggregate_root/history.rb +0 -0
- data/lib/simple_event_sourcing/aggregate_root/id.rb +0 -0
- data/lib/simple_event_sourcing/events/event.rb +0 -0
- data/lib/simple_event_sourcing/events/event_dispatcher.rb +0 -0
- data/lib/simple_event_sourcing/events/event_store.rb +0 -0
- data/lib/simple_event_sourcing/events/event_store/redis/redis_client.rb +0 -0
- data/lib/simple_event_sourcing/events/event_store/redis/redis_event_store.rb +0 -0
- data/lib/simple_event_sourcing/events/event_subscriber.rb +0 -0
- data/lib/simple_event_sourcing/events/stored_event.rb +0 -0
- data/lib/simple_event_sourcing/version.rb +1 -1
- data/run.sh +0 -0
- data/simple_event_sourcing.gemspec +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 380e14116e597850a73be35b94bbc59f8f8c3e45a2becd05abc2992cbc01b4b9
|
4
|
+
data.tar.gz: 83009440b122bed85846c03d8fb525b717a5f99b6f9c190700c5029111888b7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40d194c86fb5e4cf4ac206079e42ee0366f260d73def13f057380c628c115cd61ab935353fdda2196b2ffdcb49b9d6b45aebed29af14c0a66983c9d75b8ce10e
|
7
|
+
data.tar.gz: 00e4f2274fa2cca70dbe0a00e34d40aaa582ca351d22cc9166563f3a4d3081031e3d9edc7a766a8b2c9ea2cb59195fde910fb7602a17aaf3809656deffcd1db9
|
data/.gitignore
CHANGED
File without changes
|
data/.rspec
CHANGED
File without changes
|
data/.simplecov
CHANGED
File without changes
|
data/.travis.yml
CHANGED
File without changes
|
data/CODE_OF_CONDUCT.md
CHANGED
File without changes
|
data/Dockerfile
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/Gemfile.lock
CHANGED
data/LICENSE.txt
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
data/docker-compose.yml
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/run.sh
CHANGED
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_event_sourcing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Manuel López Torrent
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
150
|
version: '0'
|
151
151
|
requirements: []
|
152
152
|
rubyforge_project:
|
153
|
-
rubygems_version: 2.7.
|
153
|
+
rubygems_version: 2.7.6
|
154
154
|
signing_key:
|
155
155
|
specification_version: 4
|
156
156
|
summary: This gem provides a simple way for add events sourcing related behaviour
|