aggregate_root 2.0.1 → 2.1.0

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: 00c4e60e5544d7344bd510f09a343ecbc93115c5f2b7d18d67dfcb1292bb8ebe
4
- data.tar.gz: 6dd426b68d42fe7363e8fd640162c01cd8b3068d602e17dfdcba80a210f0f76d
3
+ metadata.gz: 506e445ebb792e32a773f2ac2e8e23f414209d3782a374195d2d999cf7f3a7df
4
+ data.tar.gz: d5877ac859dfabb7f1f873d5ffcb6f8c664e34fb69ee2d6846ce184a65d2fdbf
5
5
  SHA512:
6
- metadata.gz: 388f3c85d5d00edd6034f2452366fc8cea9844c38346cbdbedcd8e95e42c450502aa0466496e37a0ff8b6ba56b21bd90900915135870da1c10c00d83225a9cd6
7
- data.tar.gz: acb22c8403a6155f3cbf96de958550b9fbe197abd4cc1491c665e62545c0b50cc40d8846a4699615e11ea6598d4ba3cb8cb92f8ff3bda3d767d41ef4cb097fe7
6
+ metadata.gz: 2941c2036decd322cbcac7448fe4cd5aaf34b838faf11c2fe2969d1681d5f5a506feef03e9f4c40b25a7b08d76264d165f7cbdb49ad000d4e11e2865a4a81e9e
7
+ data.tar.gz: d764ea6bd1d8bf91452202990f353d95305edb13e0f37378aad86e6f64f2ca402a2d9f52aa2c5a6c5b6c44e56264bf99b2cb524f3215954755011a17b493fd32
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # AggregateRoot
2
2
 
3
- Event sourced (with Rails Event Store) aggregate root implementation.
3
+ Event sourced aggregate root implementation for RubyEventStore.
4
4
 
5
- For configuration & usage documentation see [Event Sourcing with AggregateRoot](https://railseventstore.org/docs/app/).
5
+ Find out more at [https://railseventstore.org](https://railseventstore.org/)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AggregateRoot
4
- VERSION = "2.0.1"
4
+ VERSION = "2.1.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aggregate_root
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arkency
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-05 00:00:00.000000000 Z
11
+ date: 2021-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby2_keywords
@@ -30,28 +30,22 @@ dependencies:
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 2.0.1
33
+ version: 2.1.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 2.0.1
41
- description: Event sourced (with Rails Event Store) aggregate root implementation
42
- email:
43
- - dev@arkency.com
40
+ version: 2.1.0
41
+ description:
42
+ email: dev@arkency.com
44
43
  executables: []
45
44
  extensions: []
46
- extra_rdoc_files: []
45
+ extra_rdoc_files:
46
+ - README.md
47
47
  files:
48
- - ".mutant.yml"
49
- - CHANGELOG.md
50
- - Gemfile
51
- - Gemfile.lock
52
- - Makefile
53
48
  - README.md
54
- - aggregate_root.gemspec
55
49
  - lib/aggregate_root.rb
56
50
  - lib/aggregate_root/configuration.rb
57
51
  - lib/aggregate_root/default_apply_strategy.rb
@@ -63,7 +57,7 @@ homepage: https://railseventstore.org
63
57
  licenses:
64
58
  - MIT
65
59
  metadata:
66
- homepage_uri: https://railseventstore.org/
60
+ homepage_uri: https://railseventstore.org
67
61
  changelog_uri: https://github.com/RailsEventStore/rails_event_store/releases
68
62
  source_code_uri: https://github.com/RailsEventStore/rails_event_store
69
63
  bug_tracker_uri: https://github.com/RailsEventStore/rails_event_store/issues
@@ -75,15 +69,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
69
  requirements:
76
70
  - - ">="
77
71
  - !ruby/object:Gem::Version
78
- version: '0'
72
+ version: '2.5'
79
73
  required_rubygems_version: !ruby/object:Gem::Requirement
80
74
  requirements:
81
75
  - - ">="
82
76
  - !ruby/object:Gem::Version
83
77
  version: '0'
84
78
  requirements: []
85
- rubygems_version: 3.2.3
79
+ rubygems_version: 3.1.4
86
80
  signing_key:
87
81
  specification_version: 4
88
- summary: Event sourced (with Rails Event Store) aggregate root implementation
82
+ summary: Event sourced aggregate root implementation for RubyEventStore
89
83
  test_files: []
@@ -1 +0,0 @@
1
- ../.mutant.yml
@@ -1,55 +0,0 @@
1
- Further changes can be tracked at [releases page](https://github.com/RailsEventStore/rails_event_store/releases).
2
-
3
- ### 0.4.0 (28.10.2016)
4
-
5
- * Change: redesign whole gem from scratch making it easier to use
6
- This is a breaking change!
7
-
8
- ### 0.3.6 (18.10.2016)
9
-
10
- * Change: ruby_event_store updated to 0.13.0
11
-
12
- ### 0.3.5 (11.08.2016)
13
-
14
- * Fix an issue when default apply strategy generated a wrong method name #7
15
-
16
- ### 0.3.4 (10.08.2016)
17
-
18
- * Fix: missing keyword argument name
19
-
20
- ### 0.3.3 (10.08.2016)
21
-
22
- * Change: ruby_event_store updated to 0.12.0
23
-
24
- ### 0.3.2 (12.07.2016)
25
-
26
- * Change: ruby_event_store updated to 0.11.0
27
-
28
- ### 0.3.1 (24.06.2016)
29
-
30
- * Change: ruby_event_store updated to 0.9.0
31
- * Fix: Clarify Licensing terms - MIT license it is from now
32
-
33
- ### 0.3.0 (21.06.2016)
34
-
35
- * Change: Replace RailsEventStore dependency with more generic RubyEventStore
36
-
37
- ### 0.2.1 (21.03.2016)
38
-
39
- * rails_event_store updated to 0.5.0
40
-
41
- ### 0.2.0 (17.03.2016)
42
-
43
- * rails_event_store updated to 0.4.0
44
-
45
- ### 0.1.0 (25.02.2016)
46
-
47
- * Revert dependency on RailsEventStore #3
48
-
49
- ### 0.0.2 (29.01.2016)
50
-
51
- * Update RailsEventStore to 0.2.0
52
-
53
- ### 0.0.1 (28.01.2016)
54
-
55
- Initial release. Code extracted from RailsEventStore.
data/Gemfile DELETED
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
- git_source(:github) { |repo| "https://github.com/#{repo}.git" }
5
- gemspec
6
-
7
- eval_gemfile '../support/bundler/Gemfile.shared'
8
-
9
- gem 'ruby_event_store', path: '../ruby_event_store'
10
- gem 'activesupport', '~> 5.0'
@@ -1,118 +0,0 @@
1
- PATH
2
- remote: ../ruby_event_store
3
- specs:
4
- ruby_event_store (2.0.1)
5
- concurrent-ruby (~> 1.0, >= 1.1.6)
6
-
7
- PATH
8
- remote: .
9
- specs:
10
- aggregate_root (2.0.1)
11
- ruby2_keywords
12
- ruby_event_store (= 2.0.1)
13
-
14
- GEM
15
- remote: https://rubygems.org/
16
- remote: https://oss:7AXfeZdAfCqL1PvHm2nvDJO6Zd9UW8IK@gem.mutant.dev/
17
- specs:
18
- abstract_type (0.0.7)
19
- activesupport (5.2.4.4)
20
- concurrent-ruby (~> 1.0, >= 1.0.2)
21
- i18n (>= 0.7, < 2)
22
- minitest (~> 5.1)
23
- tzinfo (~> 1.1)
24
- adamantium (0.2.0)
25
- ice_nine (~> 0.11.0)
26
- memoizable (~> 0.4.0)
27
- anima (0.3.2)
28
- abstract_type (~> 0.0.7)
29
- adamantium (~> 0.2)
30
- equalizer (~> 0.0.11)
31
- ast (2.4.1)
32
- concord (0.1.6)
33
- adamantium (~> 0.2.0)
34
- equalizer (~> 0.0.9)
35
- concurrent-ruby (1.1.7)
36
- diff-lcs (1.4.4)
37
- equalizer (0.0.11)
38
- i18n (1.8.5)
39
- concurrent-ruby (~> 1.0)
40
- ice_nine (0.11.2)
41
- memoizable (0.4.2)
42
- thread_safe (~> 0.3, >= 0.3.1)
43
- minitest (5.14.2)
44
- mprelude (0.1.0)
45
- abstract_type (~> 0.0.7)
46
- adamantium (~> 0.2.0)
47
- concord (~> 0.1.5)
48
- equalizer (~> 0.0.9)
49
- ice_nine (~> 0.11.1)
50
- procto (~> 0.0.2)
51
- mutant (0.10.22)
52
- abstract_type (~> 0.0.7)
53
- adamantium (~> 0.2.0)
54
- anima (~> 0.3.1)
55
- ast (~> 2.2)
56
- concord (~> 0.1.5)
57
- diff-lcs (~> 1.3)
58
- equalizer (~> 0.0.9)
59
- ice_nine (~> 0.11.1)
60
- memoizable (~> 0.4.2)
61
- mprelude (~> 0.1.0)
62
- parser (~> 3.0.0)
63
- procto (~> 0.0.2)
64
- unparser (~> 0.5.6)
65
- variable (~> 0.0.1)
66
- mutant-license (0.1.1.2.1627430819213747598431630701693729869473.0)
67
- mutant-rspec (0.10.22)
68
- mutant (= 0.10.22)
69
- rspec-core (>= 3.8.0, < 4.0.0)
70
- parser (3.0.0.0)
71
- ast (~> 2.4.1)
72
- procto (0.0.3)
73
- rake (13.0.3)
74
- rspec (3.10.0)
75
- rspec-core (~> 3.10.0)
76
- rspec-expectations (~> 3.10.0)
77
- rspec-mocks (~> 3.10.0)
78
- rspec-core (3.10.1)
79
- rspec-support (~> 3.10.0)
80
- rspec-expectations (3.10.1)
81
- diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.10.0)
83
- rspec-mocks (3.10.1)
84
- diff-lcs (>= 1.2.0, < 2.0)
85
- rspec-support (~> 3.10.0)
86
- rspec-support (3.10.1)
87
- ruby2_keywords (0.0.2)
88
- thread_safe (0.3.6)
89
- tzinfo (1.2.9)
90
- thread_safe (~> 0.1)
91
- unparser (0.5.6)
92
- abstract_type (~> 0.0.7)
93
- adamantium (~> 0.2.0)
94
- anima (~> 0.3.1)
95
- concord (~> 0.1.5)
96
- diff-lcs (~> 1.3)
97
- equalizer (~> 0.0.9)
98
- mprelude (~> 0.1.0)
99
- parser (>= 3.0.0)
100
- procto (~> 0.0.2)
101
- variable (0.0.1)
102
- equalizer (~> 0.0.11)
103
-
104
- PLATFORMS
105
- ruby
106
-
107
- DEPENDENCIES
108
- activesupport (~> 5.0)
109
- aggregate_root!
110
- mutant (~> 0.10.21)
111
- mutant-license!
112
- mutant-rspec (~> 0.10.21)
113
- rake (>= 10.0)
114
- rspec (~> 3.6)
115
- ruby_event_store!
116
-
117
- BUNDLED WITH
118
- 2.1.4
data/Makefile DELETED
@@ -1,11 +0,0 @@
1
- GEM_VERSION = $(shell cat ../RES_VERSION)
2
- GEM_NAME = aggregate_root
3
- REQUIRE = $(GEM_NAME)
4
- IGNORE =
5
- SUBJECT ?= AggregateRoot*
6
-
7
- include ../support/make/install.mk
8
- include ../support/make/test.mk
9
- include ../support/make/mutant.mk
10
- include ../support/make/gem.mk
11
- include ../support/make/help.mk
@@ -1,29 +0,0 @@
1
- # coding: utf-8
2
-
3
- lib = File.expand_path('../lib', __FILE__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require 'aggregate_root/version'
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = 'aggregate_root'
9
- spec.version = AggregateRoot::VERSION
10
- spec.licenses = ['MIT']
11
- spec.authors = ['Arkency']
12
- spec.email = ['dev@arkency.com']
13
-
14
- spec.summary = %q{Event sourced (with Rails Event Store) aggregate root implementation}
15
- spec.description = %q{Event sourced (with Rails Event Store) aggregate root implementation}
16
- spec.homepage = 'https://railseventstore.org'
17
- spec.metadata = {
18
- "homepage_uri" => "https://railseventstore.org/",
19
- "changelog_uri" => "https://github.com/RailsEventStore/rails_event_store/releases",
20
- "source_code_uri" => "https://github.com/RailsEventStore/rails_event_store",
21
- "bug_tracker_uri" => "https://github.com/RailsEventStore/rails_event_store/issues",
22
- }
23
-
24
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
- spec.require_paths = ['lib']
26
-
27
- spec.add_dependency 'ruby2_keywords'
28
- spec.add_dependency 'ruby_event_store', '= 2.0.1'
29
- end