rails_event_store 2.0.3 → 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: ed65d78209e71f624104de311c74da76080c219d469e9d7a907f6f256e8fa528
4
- data.tar.gz: 25931286fa1de8b9d56e4c878558dc8f4d42dffc5a496d0dd8ae7a2cde114148
3
+ metadata.gz: 4599e13fdf8115a2cda70cbfe914e97b3812ea3a734040ed4c8e229ab1a4d0fb
4
+ data.tar.gz: 364502236345c06a6a02183db0ccd2977a9875321986e9079ea91babf58e30cf
5
5
  SHA512:
6
- metadata.gz: a751b9f6302754f067b72619c941570eb4f3556b0e743b8d06802bf57cdc090e2a0f47efb65b9c4c4161fb597c94e5206433373361668d678a28ede2195fcb18
7
- data.tar.gz: a7a4276498f631a30b93585531ca8ad48e4e9f49eeba9b51f80388453bbf3acd743df216fe7504bb11458c6780bb9204cf9ff9e5b3d43a7648a45d5d65417137
6
+ metadata.gz: bd6e0c8241e4ca1b87403c088f7b3413488ee0e6147a019452173ab0d8385237cb81fe2bfae529d855615abc7a36fa7ee823d76941540455eb750009ac01e253
7
+ data.tar.gz: 102ae5b6c2884317958e3473ff33a935f7058e3d12e5f2e014ceadce11fb9297380da85a46b91a5ba9f1ac43525674b135e4f49a9495c8cca455b03792835313
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
1
  # RailsEventStore
2
2
 
3
- Rails wrapper for Ruby Event Store with batteries included.
3
+ Rails wrapper for RubyEventStore with batteries included.
4
+
5
+ Ships with asynchronous after-commit event dispatch on top of ActiveJob, ActiveSupport::Notifications instrumentation enabled, request metadata enrichment and opinionated directory structure generator for bounded contexts.
6
+
7
+ Find out more at [https://railseventstore.org](https://railseventstore.org/)
@@ -10,7 +10,7 @@ module RailsEventStore
10
10
  end
11
11
  end
12
12
 
13
- def self.with(event_store: Rails.configuration.event_store, serializer: event_store.__send__(:mapper).serializer)
13
+ def self.with(event_store: Rails.configuration.event_store, serializer: YAML)
14
14
  Module.new do
15
15
  define_method :perform do |payload|
16
16
  super(event_store.deserialize(serializer: serializer, **payload.symbolize_keys))
@@ -5,10 +5,10 @@ module RailsEventStore
5
5
  attr_reader :request_metadata
6
6
 
7
7
  def initialize(mapper: RubyEventStore::Mappers::Default.new,
8
- repository: RailsEventStoreActiveRecord::EventRepository.new(serializer: mapper.serializer),
8
+ repository: RailsEventStoreActiveRecord::EventRepository.new(serializer: YAML),
9
9
  subscriptions: RubyEventStore::Subscriptions.new,
10
10
  dispatcher: RubyEventStore::ComposedDispatcher.new(
11
- RailsEventStore::AfterCommitAsyncDispatcher.new(scheduler: ActiveJobScheduler.new(serializer: mapper.serializer)),
11
+ RailsEventStore::AfterCommitAsyncDispatcher.new(scheduler: ActiveJobScheduler.new(serializer: YAML)),
12
12
  RubyEventStore::Dispatcher.new),
13
13
  clock: default_clock,
14
14
  correlation_id_generator: default_correlation_id_generator,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsEventStore
4
- VERSION = "2.0.3"
4
+ VERSION = "2.1.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_event_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
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-12-01 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: ruby_event_store
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.3
19
+ version: 2.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.3
26
+ version: 2.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: ruby_event_store-browser
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 2.0.3
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.3
40
+ version: 2.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rails_event_store_active_record
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 2.0.3
47
+ version: 2.1.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 2.0.3
54
+ version: 2.1.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: aggregate_root
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 2.0.3
61
+ version: 2.1.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 2.0.3
68
+ version: 2.1.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: activesupport
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -122,25 +122,16 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0.4'
125
- description: Implementation of Event Store in Ruby
126
- email:
127
- - dev@arkency.com
125
+ description: |
126
+ Rails wrapper for RubyEventStore with batteries included. Ships with asynchronous after-commit event dispatch
127
+ on top of ActiveJob, ActiveSupport::Notifications instrumentation enabled, request metadata enrichment
128
+ and opinionated directory structure generator for bounded contexts.
129
+ email: dev@arkency.com
128
130
  executables: []
129
131
  extensions: []
130
- extra_rdoc_files: []
132
+ extra_rdoc_files:
133
+ - README.md
131
134
  files:
132
- - CHANGELOG.md
133
- - Gemfile
134
- - Gemfile.lock
135
- - Gemfile.rails_5_0
136
- - Gemfile.rails_5_0.lock
137
- - Gemfile.rails_5_1
138
- - Gemfile.rails_5_1.lock
139
- - Gemfile.rails_5_2
140
- - Gemfile.rails_5_2.lock
141
- - Gemfile.rails_6_0
142
- - Gemfile.rails_6_0.lock
143
- - Makefile
144
135
  - README.md
145
136
  - lib/generators/rails_event_store/bounded_context_generator.rb
146
137
  - lib/generators/rails_event_store/rspec_generator.rb
@@ -161,12 +152,11 @@ files:
161
152
  - lib/rails_event_store/middleware.rb
162
153
  - lib/rails_event_store/railtie.rb
163
154
  - lib/rails_event_store/version.rb
164
- - rails_event_store.gemspec
165
155
  homepage: https://railseventstore.org
166
156
  licenses:
167
157
  - MIT
168
158
  metadata:
169
- homepage_uri: https://railseventstore.org/
159
+ homepage_uri: https://railseventstore.org
170
160
  changelog_uri: https://github.com/RailsEventStore/rails_event_store/releases
171
161
  source_code_uri: https://github.com/RailsEventStore/rails_event_store
172
162
  bug_tracker_uri: https://github.com/RailsEventStore/rails_event_store/issues
@@ -178,7 +168,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
168
  requirements:
179
169
  - - ">="
180
170
  - !ruby/object:Gem::Version
181
- version: '0'
171
+ version: '2.5'
182
172
  required_rubygems_version: !ruby/object:Gem::Requirement
183
173
  requirements:
184
174
  - - ">="
@@ -188,5 +178,5 @@ requirements: []
188
178
  rubygems_version: 3.1.4
189
179
  signing_key:
190
180
  specification_version: 4
191
- summary: Event Store in Ruby
181
+ summary: Rails wrapper for RubyEventStore with batteries included
192
182
  test_files: []
data/CHANGELOG.md DELETED
@@ -1,159 +0,0 @@
1
- Further changes can be tracked at [releases page](https://github.com/RailsEventStore/rails_event_store/releases).
2
-
3
- ### 0.14.5 (24.08.2017)
4
-
5
- * Change: ruby_event_store updated to 0.14.0
6
-
7
- ### 0.14.4 (18.08.2017)
8
-
9
- * Change: rails_event_store_active_record updated to 0.6.11
10
- * Fix: Explicit order when querying forward. Leaving it implcit to database engine choice gives different results on different engines.
11
- * Fix: Explicitly require railtie to load middleware in Rails to enrich event metadata with request metadata (PR #65)
12
-
13
- ### 0.14.3 (24.11.2016)
14
-
15
- * Fix: Fixes where is initialized event repository #62
16
-
17
- ### 0.14.2 (23.11.2016)
18
-
19
- * Change: rails_event_store_active_record updated to 0.6.10
20
- This time it will really allow to avoid ActiveRecord dependency when not using rails_event_store_active_record's
21
- event repository.
22
-
23
- ### 0.14.1 (21.11.2016)
24
-
25
- * Change: Allows to set the event repository used. #61
26
- Allow to avoid ActiveRecord dependency when not using rails_event_store_active_record's
27
- event repository. See documentation for mode details https://railseventstore.arkency.com/docs/repository.html
28
-
29
- ### 0.14.0 (28.10.2016)
30
-
31
- * Change: aggregate_root updated to 0.4.0
32
- This is a breaking change only if you use aggregate_root gem.
33
- Nothing has changed in RailsEventStore however the aggregate_root gem
34
- has been redesigned completely.
35
-
36
- ### 0.13.0 (21.10.2016)
37
-
38
- * Change: ruby_event_store updated to 0.13.0
39
- * Change: RailsEventStore::Client methods signarures aligned with RubyEventStore::Client
40
- RailsEventStore::Client is just a specialization of RubyEventStore::Client
41
- with sensible defaults. Nothing more. This will ensure both are compatible.
42
- * Change: No more ClosedStruct in Event class, you need use hashes to access data & metadata.
43
- This is a breaking change.
44
-
45
- ### 0.12.1 (11.08.2016)
46
-
47
- * Fix: aggregate_root gem updated to 0.3.5 fixing invalid method name generated for events wrapped in namespace
48
-
49
- ### 0.12.0 (10.08.2016)
50
-
51
- * Change: Updated Ruby Event Store method calls according to the newer version PR #53
52
-
53
- ### 0.11.0 (12.07.2016)
54
-
55
- * Breaking change in domain event class (Part of PR #48)
56
- * no more simple `TestEvent.new(some_attr: 'some value')`
57
- use `TestEvent.new(data: { some_attr: 'some value' })` instead
58
- * all data & metadata attributes accessible via `data` & `metadata` properties
59
- of event class
60
- * This will avoid name clashes when defining domain event data,
61
- especially important for `event_id`
62
- * Breaking change: deprecated `handle_event` method removed, use `call` instead
63
- * some domain event handlers might need method rename
64
- * Change: Mark aliased methods as deprecated (soon to be removed)
65
- * Change: Update RubyEventStore to 0.11.0 PR #48
66
- * RubyEventStore::Facade renamed to RubyEventStore::Client
67
- * Fix: Improve mutation tests coverage PR #47
68
-
69
- ### 0.10.0 (30.06.2016)
70
-
71
- * Change: Rails request details in event metadata PR #39
72
- * Change: Add dynamic subscriptions (implemented by ruby_event_store 0.9.0) PR #43
73
- * Fix: In-memory sqlite3 with schema load over prebaked filesystem blob in testing PR #41
74
-
75
- ### 0.9.0 (24.06.2016)
76
-
77
- * Change: ruby_event_store updated to 0.9.0 (Call instead of handle_event)
78
- * Change: aggregate_root updated to 0.3.1 (licensing info)
79
- * Fix: Clarify Licensing terms #36 - MIT licence it is from now
80
-
81
- ### 0.8.0 (21.06.2016)
82
-
83
- * Change: ruby_event_store updated to 0.8.0 (dynamic subscriptions)
84
- * Change: aggregate_root updated to 0.3.0 (fix circular dependency)
85
- * Change: remove SlackEventHandler
86
-
87
- ### 0.7.0 (01.06.2016)
88
-
89
- * Change: ruby_event_store updated to 0.6.0 (adding basic projections support)
90
-
91
- ### 0.6.1 (25.05.2016)
92
-
93
- * Fix: Allow to read events backward PR #32 (bugfix)
94
-
95
- ### 0.6.0 (11.04.2016)
96
-
97
- * Change: EventRepository moved to separate gem [rails_event_store_active_record](https://github.com/RailsEventStore/rails_event_store_active_record)
98
- * Change: rails_event_store_active_record updated to version 0.5.1 - allows to use custom event class
99
-
100
- ### 0.5.0 (21.03.2016)
101
-
102
- * Align with changes in `ruby_event_store` 0.5.0:
103
- * Change: Event class refactoring to make default values more explicit
104
- * Change: Let event broker to be given as a dependency
105
- * Change: No nils, use symbols instead - :any & :none replaced meaningless nil value
106
- * Change: Remove Event#event_type - use class instead
107
- * Fix: Typo fix (appent_to_stream corrected to append_to_stream)
108
- * Change: Encapsulate internals fo RailsEventStore::Client
109
- * Change: Hide `ruby_event_store` internals by adding classes in RailsEventStore module
110
-
111
- ### 0.4.1 (17.03.2016)
112
-
113
- * Fix: aggregate_root gem aligned with changes in rails_event_store
114
-
115
- ### 0.4.0 (17.03.2016)
116
-
117
- * Change: Use class names to subscribe events (ruby_event_store update to 0.4.0)
118
- * Change: EventRepository now recreate events using orginal classes
119
-
120
- ### 0.3.1 (13.03.2016)
121
-
122
- * Update to ruby_event_store 0.3.1 - fix changing timestamp on reads from repository
123
-
124
- ### 0.3.0 (03.03.2016)
125
-
126
- * Update to ruby_event_store 0.3.0 - see ruby_event_store changelog for more details
127
- * Implement reading forward & backward (aliasold methods to read forward)
128
- * Implement paging when reading from all streams
129
-
130
- ### 0.2.2 (25.02.2016)
131
-
132
- * Restore AggregateRoot in RES, but this time as a dependency on aggregate_root gem
133
-
134
- ### 0.2.1 (25.02.2016)
135
-
136
- * Fix: Error when trying to #read_all_streams #20
137
-
138
- ### 0.2.0 (29.01.2016)
139
-
140
- * Removed EventEntity class
141
- * All read & returned events are not instances of RailsEventStore::Event class
142
- * RailsEventStore::Event class allows for easier events creation and access to data attributes
143
- * AggregateRoot module & repository extracted to new gem (aggregate_root)
144
-
145
- ### 0.1.2 (26.05.2015)
146
-
147
- * Moved most core features to the separate gem `ruby_event_store`. We left only rails related implementation here.
148
- * It's now assumed that `event_id` has a unique index in the database (the same is applied to the initial migration generator)
149
- * Model is no longer validating uniqueness of `event_id` via ActiveRecord
150
- * Event does not need any data now, it can be created just like `OrderCreated.new` (without any arguments)
151
- * Migration generator is no more generating the `updated_at` field in the `event_store_events` table. We also advise to remove this column, since events shouldn't be *ever* modified.
152
- * In the event's metadata there's a new field `published_at`
153
- * Added the `subscribe_to_all_events` method to `RailsEventStore::Client`
154
- * Subscribing to only one event via `client.subscribe(subscriber, 'OrderCreated')` no longer works. You should use `client.subscribe(subscriber, ['OrderCreated'])` instead.
155
- * Default event's name is no longer `OrderCreated` for the `OrderCreated` event in the `Orders` namespace, now it's `Orders::OrderCreated`
156
-
157
- ### 0.1.1 (22.04.2015)
158
-
159
- Initial release.
data/Gemfile DELETED
@@ -1,14 +0,0 @@
1
- source 'https://rubygems.org'
2
- git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
- gemspec
4
-
5
- eval_gemfile '../support/bundler/Gemfile.shared'
6
-
7
- gem 'ruby_event_store', path: '../ruby_event_store'
8
- gem 'ruby_event_store-browser', path: '../ruby_event_store-browser'
9
- gem 'rails_event_store_active_record', path: '../rails_event_store_active_record'
10
- gem 'aggregate_root', path: '../aggregate_root'
11
- gem 'sidekiq'
12
- gem 'rack-test'
13
- gem 'rails', '6.1.0'
14
- gem 'sqlite3', '1.4.2'
data/Gemfile.lock DELETED
@@ -1,295 +0,0 @@
1
- PATH
2
- remote: ../aggregate_root
3
- specs:
4
- aggregate_root (2.0.3)
5
- ruby2_keywords
6
- ruby_event_store (= 2.0.3)
7
-
8
- PATH
9
- remote: ../rails_event_store_active_record
10
- specs:
11
- rails_event_store_active_record (2.0.3)
12
- activemodel (>= 3.0)
13
- activerecord-import (>= 1.0.2)
14
- activesupport (>= 3.0)
15
- ruby_event_store (= 2.0.3)
16
-
17
- PATH
18
- remote: ../ruby_event_store-browser
19
- specs:
20
- ruby_event_store-browser (2.0.3)
21
- ruby_event_store (= 2.0.3)
22
- sinatra
23
-
24
- PATH
25
- remote: ../ruby_event_store
26
- specs:
27
- ruby_event_store (2.0.3)
28
- concurrent-ruby (~> 1.0, >= 1.1.6)
29
-
30
- PATH
31
- remote: .
32
- specs:
33
- rails_event_store (2.0.3)
34
- activejob (>= 3.0)
35
- activemodel (>= 3.0)
36
- activesupport (>= 3.0)
37
- aggregate_root (= 2.0.3)
38
- arkency-command_bus (>= 0.4)
39
- rails_event_store_active_record (= 2.0.3)
40
- ruby_event_store (= 2.0.3)
41
- ruby_event_store-browser (= 2.0.3)
42
-
43
- GEM
44
- remote: https://oss:7AXfeZdAfCqL1PvHm2nvDJO6Zd9UW8IK@gem.mutant.dev/
45
- specs:
46
- mutant-license (0.1.1.2.1627430819213747598431630701693729869473.0)
47
-
48
- GEM
49
- remote: https://rubygems.org/
50
- specs:
51
- abstract_type (0.0.7)
52
- actioncable (6.1.0)
53
- actionpack (= 6.1.0)
54
- activesupport (= 6.1.0)
55
- nio4r (~> 2.0)
56
- websocket-driver (>= 0.6.1)
57
- actionmailbox (6.1.0)
58
- actionpack (= 6.1.0)
59
- activejob (= 6.1.0)
60
- activerecord (= 6.1.0)
61
- activestorage (= 6.1.0)
62
- activesupport (= 6.1.0)
63
- mail (>= 2.7.1)
64
- actionmailer (6.1.0)
65
- actionpack (= 6.1.0)
66
- actionview (= 6.1.0)
67
- activejob (= 6.1.0)
68
- activesupport (= 6.1.0)
69
- mail (~> 2.5, >= 2.5.4)
70
- rails-dom-testing (~> 2.0)
71
- actionpack (6.1.0)
72
- actionview (= 6.1.0)
73
- activesupport (= 6.1.0)
74
- rack (~> 2.0, >= 2.0.9)
75
- rack-test (>= 0.6.3)
76
- rails-dom-testing (~> 2.0)
77
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
78
- actiontext (6.1.0)
79
- actionpack (= 6.1.0)
80
- activerecord (= 6.1.0)
81
- activestorage (= 6.1.0)
82
- activesupport (= 6.1.0)
83
- nokogiri (>= 1.8.5)
84
- actionview (6.1.0)
85
- activesupport (= 6.1.0)
86
- builder (~> 3.1)
87
- erubi (~> 1.4)
88
- rails-dom-testing (~> 2.0)
89
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
90
- activejob (6.1.0)
91
- activesupport (= 6.1.0)
92
- globalid (>= 0.3.6)
93
- activemodel (6.1.0)
94
- activesupport (= 6.1.0)
95
- activerecord (6.1.0)
96
- activemodel (= 6.1.0)
97
- activesupport (= 6.1.0)
98
- activerecord-import (1.2.0)
99
- activerecord (>= 3.2)
100
- activestorage (6.1.0)
101
- actionpack (= 6.1.0)
102
- activejob (= 6.1.0)
103
- activerecord (= 6.1.0)
104
- activesupport (= 6.1.0)
105
- marcel (~> 0.3.1)
106
- mimemagic (~> 0.3.2)
107
- activesupport (6.1.0)
108
- concurrent-ruby (~> 1.0, >= 1.0.2)
109
- i18n (>= 1.6, < 2)
110
- minitest (>= 5.1)
111
- tzinfo (~> 2.0)
112
- zeitwerk (~> 2.3)
113
- adamantium (0.2.0)
114
- ice_nine (~> 0.11.0)
115
- memoizable (~> 0.4.0)
116
- anima (0.3.2)
117
- abstract_type (~> 0.0.7)
118
- adamantium (~> 0.2)
119
- equalizer (~> 0.0.11)
120
- arkency-command_bus (0.4.0)
121
- thread_safe
122
- ast (2.4.1)
123
- builder (3.2.4)
124
- concord (0.1.6)
125
- adamantium (~> 0.2.0)
126
- equalizer (~> 0.0.9)
127
- concurrent-ruby (1.1.7)
128
- connection_pool (2.2.3)
129
- crass (1.0.6)
130
- diff-lcs (1.4.4)
131
- equalizer (0.0.11)
132
- erubi (1.10.0)
133
- globalid (0.4.2)
134
- activesupport (>= 4.2.0)
135
- i18n (1.8.5)
136
- concurrent-ruby (~> 1.0)
137
- ice_nine (0.11.2)
138
- loofah (2.8.0)
139
- crass (~> 1.0.2)
140
- nokogiri (>= 1.5.9)
141
- mail (2.7.1)
142
- mini_mime (>= 0.1.1)
143
- marcel (0.3.3)
144
- mimemagic (~> 0.3.2)
145
- memoizable (0.4.2)
146
- thread_safe (~> 0.3, >= 0.3.1)
147
- method_source (1.0.0)
148
- mimemagic (0.3.10)
149
- nokogiri (~> 1)
150
- rake
151
- mini_mime (1.0.2)
152
- mini_portile2 (2.6.1)
153
- minitest (5.14.2)
154
- mprelude (0.1.0)
155
- abstract_type (~> 0.0.7)
156
- adamantium (~> 0.2.0)
157
- concord (~> 0.1.5)
158
- equalizer (~> 0.0.9)
159
- ice_nine (~> 0.11.1)
160
- procto (~> 0.0.2)
161
- mustermann (1.1.1)
162
- ruby2_keywords (~> 0.0.1)
163
- mutant (0.10.22)
164
- abstract_type (~> 0.0.7)
165
- adamantium (~> 0.2.0)
166
- anima (~> 0.3.1)
167
- ast (~> 2.2)
168
- concord (~> 0.1.5)
169
- diff-lcs (~> 1.3)
170
- equalizer (~> 0.0.9)
171
- ice_nine (~> 0.11.1)
172
- memoizable (~> 0.4.2)
173
- mprelude (~> 0.1.0)
174
- parser (~> 3.0.0)
175
- procto (~> 0.0.2)
176
- unparser (~> 0.5.6)
177
- variable (~> 0.0.1)
178
- mutant-rspec (0.10.22)
179
- mutant (= 0.10.22)
180
- rspec-core (>= 3.8.0, < 4.0.0)
181
- nio4r (2.5.4)
182
- nokogiri (1.12.5)
183
- mini_portile2 (~> 2.6.1)
184
- racc (~> 1.4)
185
- parser (3.0.0.0)
186
- ast (~> 2.4.1)
187
- procto (0.0.3)
188
- racc (1.6.0)
189
- rack (2.2.3)
190
- rack-protection (2.1.0)
191
- rack
192
- rack-test (1.1.0)
193
- rack (>= 1.0, < 3)
194
- rails (6.1.0)
195
- actioncable (= 6.1.0)
196
- actionmailbox (= 6.1.0)
197
- actionmailer (= 6.1.0)
198
- actionpack (= 6.1.0)
199
- actiontext (= 6.1.0)
200
- actionview (= 6.1.0)
201
- activejob (= 6.1.0)
202
- activemodel (= 6.1.0)
203
- activerecord (= 6.1.0)
204
- activestorage (= 6.1.0)
205
- activesupport (= 6.1.0)
206
- bundler (>= 1.15.0)
207
- railties (= 6.1.0)
208
- sprockets-rails (>= 2.0.0)
209
- rails-dom-testing (2.0.3)
210
- activesupport (>= 4.2.0)
211
- nokogiri (>= 1.6)
212
- rails-html-sanitizer (1.3.0)
213
- loofah (~> 2.3)
214
- railties (6.1.0)
215
- actionpack (= 6.1.0)
216
- activesupport (= 6.1.0)
217
- method_source
218
- rake (>= 0.8.7)
219
- thor (~> 1.0)
220
- rake (13.0.6)
221
- redis (4.2.5)
222
- rspec (3.10.0)
223
- rspec-core (~> 3.10.0)
224
- rspec-expectations (~> 3.10.0)
225
- rspec-mocks (~> 3.10.0)
226
- rspec-core (3.10.1)
227
- rspec-support (~> 3.10.0)
228
- rspec-expectations (3.10.1)
229
- diff-lcs (>= 1.2.0, < 2.0)
230
- rspec-support (~> 3.10.0)
231
- rspec-mocks (3.10.1)
232
- diff-lcs (>= 1.2.0, < 2.0)
233
- rspec-support (~> 3.10.0)
234
- rspec-support (3.10.1)
235
- ruby2_keywords (0.0.5)
236
- sidekiq (6.1.2)
237
- connection_pool (>= 2.2.2)
238
- rack (~> 2.0)
239
- redis (>= 4.2.0)
240
- sinatra (2.1.0)
241
- mustermann (~> 1.0)
242
- rack (~> 2.2)
243
- rack-protection (= 2.1.0)
244
- tilt (~> 2.0)
245
- sprockets (4.0.2)
246
- concurrent-ruby (~> 1.0)
247
- rack (> 1, < 3)
248
- sprockets-rails (3.2.2)
249
- actionpack (>= 4.0)
250
- activesupport (>= 4.0)
251
- sprockets (>= 3.0.0)
252
- sqlite3 (1.4.2)
253
- thor (1.0.1)
254
- thread_safe (0.3.6)
255
- tilt (2.0.10)
256
- tzinfo (2.0.4)
257
- concurrent-ruby (~> 1.0)
258
- unparser (0.5.6)
259
- abstract_type (~> 0.0.7)
260
- adamantium (~> 0.2.0)
261
- anima (~> 0.3.1)
262
- concord (~> 0.1.5)
263
- diff-lcs (~> 1.3)
264
- equalizer (~> 0.0.9)
265
- mprelude (~> 0.1.0)
266
- parser (>= 3.0.0)
267
- procto (~> 0.0.2)
268
- variable (0.0.1)
269
- equalizer (~> 0.0.11)
270
- websocket-driver (0.7.3)
271
- websocket-extensions (>= 0.1.0)
272
- websocket-extensions (0.1.5)
273
- zeitwerk (2.4.2)
274
-
275
- PLATFORMS
276
- ruby
277
-
278
- DEPENDENCIES
279
- aggregate_root!
280
- mutant (~> 0.10.21)
281
- mutant-license!
282
- mutant-rspec (~> 0.10.21)
283
- rack-test
284
- rails (= 6.1.0)
285
- rails_event_store!
286
- rails_event_store_active_record!
287
- rake (>= 10.0)
288
- rspec (~> 3.6)
289
- ruby_event_store!
290
- ruby_event_store-browser!
291
- sidekiq
292
- sqlite3 (= 1.4.2)
293
-
294
- BUNDLED WITH
295
- 2.2.27
data/Gemfile.rails_5_0 DELETED
@@ -1,14 +0,0 @@
1
- source 'https://rubygems.org'
2
- git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
- gemspec
4
-
5
- eval_gemfile '../support/bundler/Gemfile.shared'
6
-
7
- gem 'ruby_event_store', path: '../ruby_event_store'
8
- gem 'ruby_event_store-browser', path: '../ruby_event_store-browser'
9
- gem 'rails_event_store_active_record', path: '../rails_event_store_active_record'
10
- gem 'aggregate_root', path: '../aggregate_root'
11
- gem 'sidekiq'
12
- gem 'rack-test'
13
- gem 'rails', '5.0.7.2'
14
- gem 'sqlite3', '1.3.13'