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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74c6944c32361f4df940028e1e7a9d6c7cd2608a5031210e91140084ff8f947a
4
- data.tar.gz: 8229b619a34663f4d40c7d60caa188a0acef866aa8a6992fddc5462b04f8d0cb
3
+ metadata.gz: 380e14116e597850a73be35b94bbc59f8f8c3e45a2becd05abc2992cbc01b4b9
4
+ data.tar.gz: 83009440b122bed85846c03d8fb525b717a5f99b6f9c190700c5029111888b7a
5
5
  SHA512:
6
- metadata.gz: 80722152a7f8094b1644e5e6ee318035da1856cd06f3abc3ea8bf3f4f5967236504054a7a990f231245883e2f09226987783ecf8614e1948c1d389d9c031e9a8
7
- data.tar.gz: 5090dfc5ea835f078c29bd6ef3a03c53eda986627a9102969e4f17f21e5b175d61201587bfdbbf82d12ac8a154c511351d212c9521843f4231adf6bcbf41f1cb
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
File without changes
File without changes
data/Dockerfile CHANGED
File without changes
data/Gemfile CHANGED
File without changes
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_event_sourcing (1.0.0)
4
+ simple_event_sourcing (1.0.1)
5
5
  redis
6
6
 
7
7
  GEM
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
File without changes
@@ -47,7 +47,7 @@ module SimpleEventSourcing
47
47
 
48
48
  def create_from_agrregate_id(id)
49
49
  aggregate = new
50
- aggregate.aggregate_id = id
50
+ aggregate.aggregate_id = self.generate_id(id)
51
51
  aggregate
52
52
  end
53
53
 
File without changes
@@ -1,3 +1,3 @@
1
1
  module SimpleEventSourcing
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'
3
3
  end
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.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-03 00:00:00.000000000 Z
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.2
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