rails_event_store_active_record 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: '0894bb04a775fb7ed2259019196b2671fc312d4f77cc4c80e7c06801ecb745fc'
4
- data.tar.gz: 7c90ced1f3035d01263e8a6aae774ef1b7c4119d3a9d82d888b6e755f992a1eb
3
+ metadata.gz: 291ce390bf636caf06d9949f79aa697799079a547b282095afe8f40f27d6c84a
4
+ data.tar.gz: ea74678de5019d72b1c82779815f12778e01871695aeeed3d704835ea64a9120
5
5
  SHA512:
6
- metadata.gz: 15f2090a54484bdcd4c291f9ed44719395bf986bbcb20c265881e3476c1c1bf0f79128c97bd04e0c244af4aa6b10b29bc6ba95cb017f90535befce0e19f52d70
7
- data.tar.gz: 5106b55da409c43770d7ceff44aa466773353c08595be8d3cd27868d5c89f63b0f909d174a6835c7a9aa4b8bba644b41b7c06ba3674670f124a3af8764f13854
6
+ metadata.gz: ae73534ca38d6ecb19bc599aa8ceb0b4e3705a20b38b3981637e0f7a313b3b3e29adb2bffc1048afb4b8c41733a41e0ca51030835271ddcb79d30aae1a8e4204
7
+ data.tar.gz: 881dd61f6e62165dd76112b8852a20a84283d1de2fa6d601b92a8e859aab9267d55b58e8ee65cb90e04ec0c08d91f3de75c4d05bc35ecc1441443fed879c17a3
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # RailsEventStoreActiveRecord
2
2
 
3
- An Active Record based implementation of events repository for [Rails Event Store](https://github.com/RailsEventStore/rails_event_store).
3
+ Persistent event repository implementation for RubyEventStore based on ActiveRecord. Ships with database schema and migrations suitable for PostgreSQL, MySQL ans SQLite database engines.
4
4
 
5
- This is the default repository used in `rails_event_store` gem.
5
+ Includes repository implementation with linearized writes to achieve log-like properties of streams on top of SQL database engine.
6
+
7
+ Find out more at [https://railseventstore.org](https://railseventstore.org/)
@@ -1,9 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'rails_event_store_active_record/generators/migration_generator'
4
- require 'rails_event_store_active_record/generators/add_valid_at_generator'
5
- require 'rails_event_store_active_record/generators/created_at_precision_generator'
6
- require 'rails_event_store_active_record/generators/no_global_stream_entries_generator'
7
4
  require 'rails_event_store_active_record/event'
8
5
  require 'rails_event_store_active_record/with_default_models'
9
6
  require 'rails_event_store_active_record/with_abstract_base_class'
@@ -18,7 +18,7 @@ module RailsEventStoreActiveRecord
18
18
  def append_to_stream(records, stream, expected_version)
19
19
  hashes = []
20
20
  event_ids = []
21
- Array(records).each do |record|
21
+ records.each do |record|
22
22
  hashes << import_hash(record, record.serialize(serializer))
23
23
  event_ids << record.event_id
24
24
  end
@@ -28,7 +28,6 @@ module RailsEventStoreActiveRecord
28
28
  end
29
29
 
30
30
  def link_to_stream(event_ids, stream, expected_version)
31
- event_ids = Array(event_ids)
32
31
  (event_ids - @event_klass.where(event_id: event_ids).pluck(:event_id)).each do |id|
33
32
  raise RubyEventStore::EventNotFound.new(id)
34
33
  end
@@ -56,7 +55,7 @@ module RailsEventStoreActiveRecord
56
55
  end
57
56
 
58
57
  def update_messages(records)
59
- hashes = Array(records).map{|record| import_hash(record, record.serialize(serializer)) }
58
+ hashes = records.map { |record| import_hash(record, record.serialize(serializer)) }
60
59
  for_update = records.map(&:event_id)
61
60
  start_transaction do
62
61
  existing = @event_klass.where(event_id: for_update).pluck(:event_id, :id).to_h
@@ -69,7 +68,7 @@ module RailsEventStoreActiveRecord
69
68
  def streams_of(event_id)
70
69
  @stream_klass.where(event_id: event_id)
71
70
  .pluck(:stream)
72
- .map{|name| RubyEventStore::Stream.new(name)}
71
+ .map { |name| RubyEventStore::Stream.new(name) }
73
72
  end
74
73
 
75
74
  private
@@ -88,7 +87,6 @@ module RailsEventStoreActiveRecord
88
87
  event_id: event_id,
89
88
  }
90
89
  end
91
- fill_ids(in_stream)
92
90
  @stream_klass.import(in_stream) unless stream.global?
93
91
  end
94
92
  self
@@ -128,10 +126,6 @@ module RailsEventStoreActiveRecord
128
126
  valid_at unless valid_at.eql?(created_at)
129
127
  end
130
128
 
131
- # Overwritten in a sub-class
132
- def fill_ids(_in_stream)
133
- end
134
-
135
129
  def start_transaction(&block)
136
130
  @event_klass.transaction(requires_new: true, &block)
137
131
  end
@@ -16,7 +16,7 @@ module RailsEventStoreActiveRecord
16
16
  :data_type,
17
17
  type: :string,
18
18
  default: 'binary',
19
- desc: "Configure the data type for `data` and `meta data` feilds in Postgres migration (options: #{DATA_TYPES.join('/')})"
19
+ desc: "Configure the data type for `data` and `meta data` fields in Postgres migration (options: #{DATA_TYPES.join('/')})"
20
20
  )
21
21
 
22
22
  def initialize(*args)
@@ -37,12 +37,7 @@ module RailsEventStoreActiveRecord
37
37
  options.fetch('data_type')
38
38
  end
39
39
 
40
- def rails_version
41
- Rails::VERSION::STRING
42
- end
43
-
44
40
  def migration_version
45
- return nil if Gem::Version.new(rails_version) < Gem::Version.new("5.0.0")
46
41
  "[4.2]"
47
42
  end
48
43
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsEventStoreActiveRecord
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: rails_event_store_active_record
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: ruby_event_store
@@ -16,42 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.1
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.1
26
+ version: 2.1.0
27
27
  - !ruby/object:Gem::Dependency
28
- name: activesupport
28
+ name: activerecord
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '3.0'
33
+ version: '5.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: '3.0'
41
- - !ruby/object:Gem::Dependency
42
- name: activemodel
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '3.0'
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '3.0'
40
+ version: '5.0'
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: activerecord-import
57
43
  requirement: !ruby/object:Gem::Requirement
@@ -66,52 +52,36 @@ dependencies:
66
52
  - - ">="
67
53
  - !ruby/object:Gem::Version
68
54
  version: 1.0.2
69
- description: Implementation of events repository based on Rails Active Record for
70
- Rails Event Store
71
- email:
72
- - dev@arkency.com
55
+ description: |
56
+ Persistent event repository implementation for RubyEventStore based on ActiveRecord. Ships with database schema
57
+ and migrations suitable for PostgreSQL, MySQL ans SQLite database engines.
58
+
59
+ Includes repository implementation with linearized writes to achieve log-like properties of streams
60
+ on top of SQL database engine.
61
+ email: dev@arkency.com
73
62
  executables: []
74
63
  extensions: []
75
- extra_rdoc_files: []
64
+ extra_rdoc_files:
65
+ - README.md
76
66
  files:
77
- - ".mutant.yml"
78
- - CHANGELOG.md
79
- - Gemfile
80
- - Gemfile.lock
81
- - Gemfile.rails_5_0
82
- - Gemfile.rails_5_0.lock
83
- - Gemfile.rails_5_1
84
- - Gemfile.rails_5_1.lock
85
- - Gemfile.rails_5_2
86
- - Gemfile.rails_5_2.lock
87
- - Gemfile.rails_6_0
88
- - Gemfile.rails_6_0.lock
89
- - Makefile
90
67
  - README.md
91
68
  - lib/rails_event_store_active_record.rb
92
69
  - lib/rails_event_store_active_record/batch_enumerator.rb
93
70
  - lib/rails_event_store_active_record/event.rb
94
71
  - lib/rails_event_store_active_record/event_repository.rb
95
72
  - lib/rails_event_store_active_record/event_repository_reader.rb
96
- - lib/rails_event_store_active_record/generators/add_valid_at_generator.rb
97
- - lib/rails_event_store_active_record/generators/created_at_precision_generator.rb
98
73
  - lib/rails_event_store_active_record/generators/migration_generator.rb
99
- - lib/rails_event_store_active_record/generators/no_global_stream_entries_generator.rb
100
- - lib/rails_event_store_active_record/generators/templates/add_valid_at_template.rb
101
74
  - lib/rails_event_store_active_record/generators/templates/create_event_store_events_template.rb
102
- - lib/rails_event_store_active_record/generators/templates/created_at_precision_template.rb
103
- - lib/rails_event_store_active_record/generators/templates/no_global_stream_entries_template.rb
104
75
  - lib/rails_event_store_active_record/index_violation_detector.rb
105
76
  - lib/rails_event_store_active_record/pg_linearized_event_repository.rb
106
77
  - lib/rails_event_store_active_record/version.rb
107
78
  - lib/rails_event_store_active_record/with_abstract_base_class.rb
108
79
  - lib/rails_event_store_active_record/with_default_models.rb
109
- - rails_event_store_active_record.gemspec
110
80
  homepage: https://railseventstore.org
111
81
  licenses:
112
82
  - MIT
113
83
  metadata:
114
- homepage_uri: https://railseventstore.org/
84
+ homepage_uri: https://railseventstore.org
115
85
  changelog_uri: https://github.com/RailsEventStore/rails_event_store/releases
116
86
  source_code_uri: https://github.com/RailsEventStore/rails_event_store
117
87
  bug_tracker_uri: https://github.com/RailsEventStore/rails_event_store/issues
@@ -123,7 +93,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
123
93
  requirements:
124
94
  - - ">="
125
95
  - !ruby/object:Gem::Version
126
- version: '0'
96
+ version: '2.5'
127
97
  required_rubygems_version: !ruby/object:Gem::Requirement
128
98
  requirements:
129
99
  - - ">="
@@ -133,5 +103,5 @@ requirements: []
133
103
  rubygems_version: 3.1.4
134
104
  signing_key:
135
105
  specification_version: 4
136
- summary: Active Record events repository for Rails Event Store
106
+ summary: Persistent event repository implementation for RubyEventStore based on ActiveRecord
137
107
  test_files: []
@@ -1 +0,0 @@
1
- ../.mutant.yml
@@ -1,75 +0,0 @@
1
- Further changes can be tracked at [releases page](https://github.com/RailsEventStore/rails_event_store/releases).
2
-
3
- ### 0.6.14 (unreleased)
4
-
5
- * Run tests in random order
6
-
7
- ### 0.6.13 (24.08.2017)
8
-
9
- * Fix: Generate migration with version number for Rails versions that support it. Fixes compatibility with Rails 5.1.
10
-
11
- ### 0.6.12 (21.08.2017)
12
-
13
- * ruby_event_store updated to 0.14.0
14
-
15
- ### 0.6.11 (8.02.2016)
16
-
17
- * Fix: Explicit order when querying forward. Leaving it implcit to database engine choice gives different results on different engines.
18
-
19
- ### 0.6.10 (23.11.2016)
20
-
21
- * Change: requires update to allow void active_record dependency when using RailsEventStore without RailsEventStoreActiveRecord
22
-
23
- ### 0.6.9 (18.10.2016)
24
-
25
- * ruby_event_store updated to 0.13.0
26
-
27
- ### 0.6.8 (11.08.2016)
28
-
29
- * ruby_event_store updated to 0.12.1
30
- * make this gem mutant free - 100% mutation tests coverage
31
-
32
- ### 0.6.7 (10.08.2016)
33
-
34
- * ruby_event_store updated to 0.12.0
35
-
36
- ### 0.6.6 (12.07.2016)
37
-
38
- * ruby_event_store updated to 0.11.0
39
-
40
- ### 0.6.5 (12.07.2016)
41
-
42
- * ruby_event_store updated to 0.10.1
43
- * Fix: fixed bug which have made repository unable to load a event with associated data or metadata. Tests for this bug were added in ruby_event_store 0.10.1
44
-
45
- ### 0.6.4 (12.07.2016)
46
-
47
- * ruby_event_store updated to 0.10.0
48
-
49
- ### 0.6.3 (24.06.2016)
50
-
51
- * Change: ruby_event_store updated to 0.9.0 (Call instead of handle_event)
52
- * Fix: Clarify Licensing information
53
-
54
- ### 0.6.2 (21.06.2016)
55
-
56
- * ruby_event_store updated to 0.8.0
57
-
58
- ### 0.6.1 (21.06.2016)
59
-
60
- * ruby_event_store updated to 0.7.0
61
- * add indexes for commonly searched fields: time and type to migration template PR #6
62
-
63
- ### 0.6.0 (25.05.2016)
64
-
65
- * ruby_event_store updated to 0.6.0
66
-
67
- ### 0.5.1 (11.04.2016)
68
-
69
- * Change: Rename migration generator from 'migrate' to 'migration' PR #3
70
- * Change: Allow to provide a custom event class #2
71
-
72
-
73
- ### 0.5.0 (25.03.2016)
74
-
75
- * Code moved from RailsEventStore 0.5.0
data/Gemfile DELETED
@@ -1,13 +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 'pg', '1.2.3'
9
- gem 'mysql2', '0.5.3'
10
- gem 'fakefs', '~> 1.3'
11
- gem 'childprocess'
12
- gem 'rails', '6.1.0'
13
- gem 'sqlite3', '1.4.2'
@@ -1,245 +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
- rails_event_store_active_record (2.0.1)
11
- activemodel (>= 3.0)
12
- activerecord-import (>= 1.0.2)
13
- activesupport (>= 3.0)
14
- ruby_event_store (= 2.0.1)
15
-
16
- GEM
17
- remote: https://rubygems.org/
18
- remote: https://oss:7AXfeZdAfCqL1PvHm2nvDJO6Zd9UW8IK@gem.mutant.dev/
19
- specs:
20
- abstract_type (0.0.7)
21
- actioncable (6.1.0)
22
- actionpack (= 6.1.0)
23
- activesupport (= 6.1.0)
24
- nio4r (~> 2.0)
25
- websocket-driver (>= 0.6.1)
26
- actionmailbox (6.1.0)
27
- actionpack (= 6.1.0)
28
- activejob (= 6.1.0)
29
- activerecord (= 6.1.0)
30
- activestorage (= 6.1.0)
31
- activesupport (= 6.1.0)
32
- mail (>= 2.7.1)
33
- actionmailer (6.1.0)
34
- actionpack (= 6.1.0)
35
- actionview (= 6.1.0)
36
- activejob (= 6.1.0)
37
- activesupport (= 6.1.0)
38
- mail (~> 2.5, >= 2.5.4)
39
- rails-dom-testing (~> 2.0)
40
- actionpack (6.1.0)
41
- actionview (= 6.1.0)
42
- activesupport (= 6.1.0)
43
- rack (~> 2.0, >= 2.0.9)
44
- rack-test (>= 0.6.3)
45
- rails-dom-testing (~> 2.0)
46
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
47
- actiontext (6.1.0)
48
- actionpack (= 6.1.0)
49
- activerecord (= 6.1.0)
50
- activestorage (= 6.1.0)
51
- activesupport (= 6.1.0)
52
- nokogiri (>= 1.8.5)
53
- actionview (6.1.0)
54
- activesupport (= 6.1.0)
55
- builder (~> 3.1)
56
- erubi (~> 1.4)
57
- rails-dom-testing (~> 2.0)
58
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
59
- activejob (6.1.0)
60
- activesupport (= 6.1.0)
61
- globalid (>= 0.3.6)
62
- activemodel (6.1.0)
63
- activesupport (= 6.1.0)
64
- activerecord (6.1.0)
65
- activemodel (= 6.1.0)
66
- activesupport (= 6.1.0)
67
- activerecord-import (1.0.7)
68
- activerecord (>= 3.2)
69
- activestorage (6.1.0)
70
- actionpack (= 6.1.0)
71
- activejob (= 6.1.0)
72
- activerecord (= 6.1.0)
73
- activesupport (= 6.1.0)
74
- marcel (~> 0.3.1)
75
- mimemagic (~> 0.3.2)
76
- activesupport (6.1.0)
77
- concurrent-ruby (~> 1.0, >= 1.0.2)
78
- i18n (>= 1.6, < 2)
79
- minitest (>= 5.1)
80
- tzinfo (~> 2.0)
81
- zeitwerk (~> 2.3)
82
- adamantium (0.2.0)
83
- ice_nine (~> 0.11.0)
84
- memoizable (~> 0.4.0)
85
- anima (0.3.2)
86
- abstract_type (~> 0.0.7)
87
- adamantium (~> 0.2)
88
- equalizer (~> 0.0.11)
89
- ast (2.4.1)
90
- builder (3.2.4)
91
- childprocess (4.0.0)
92
- concord (0.1.6)
93
- adamantium (~> 0.2.0)
94
- equalizer (~> 0.0.9)
95
- concurrent-ruby (1.1.7)
96
- crass (1.0.6)
97
- diff-lcs (1.4.4)
98
- equalizer (0.0.11)
99
- erubi (1.10.0)
100
- fakefs (1.3.0)
101
- globalid (0.4.2)
102
- activesupport (>= 4.2.0)
103
- i18n (1.8.5)
104
- concurrent-ruby (~> 1.0)
105
- ice_nine (0.11.2)
106
- loofah (2.8.0)
107
- crass (~> 1.0.2)
108
- nokogiri (>= 1.5.9)
109
- mail (2.7.1)
110
- mini_mime (>= 0.1.1)
111
- marcel (0.3.3)
112
- mimemagic (~> 0.3.2)
113
- memoizable (0.4.2)
114
- thread_safe (~> 0.3, >= 0.3.1)
115
- method_source (1.0.0)
116
- mimemagic (0.3.5)
117
- mini_mime (1.0.2)
118
- mini_portile2 (2.4.0)
119
- minitest (5.14.2)
120
- mprelude (0.1.0)
121
- abstract_type (~> 0.0.7)
122
- adamantium (~> 0.2.0)
123
- concord (~> 0.1.5)
124
- equalizer (~> 0.0.9)
125
- ice_nine (~> 0.11.1)
126
- procto (~> 0.0.2)
127
- mutant (0.10.22)
128
- abstract_type (~> 0.0.7)
129
- adamantium (~> 0.2.0)
130
- anima (~> 0.3.1)
131
- ast (~> 2.2)
132
- concord (~> 0.1.5)
133
- diff-lcs (~> 1.3)
134
- equalizer (~> 0.0.9)
135
- ice_nine (~> 0.11.1)
136
- memoizable (~> 0.4.2)
137
- mprelude (~> 0.1.0)
138
- parser (~> 3.0.0)
139
- procto (~> 0.0.2)
140
- unparser (~> 0.5.6)
141
- variable (~> 0.0.1)
142
- mutant-license (0.1.1.2.1627430819213747598431630701693729869473.0)
143
- mutant-rspec (0.10.22)
144
- mutant (= 0.10.22)
145
- rspec-core (>= 3.8.0, < 4.0.0)
146
- mysql2 (0.5.3)
147
- nio4r (2.5.4)
148
- nokogiri (1.10.10)
149
- mini_portile2 (~> 2.4.0)
150
- parser (3.0.0.0)
151
- ast (~> 2.4.1)
152
- pg (1.2.3)
153
- procto (0.0.3)
154
- rack (2.2.3)
155
- rack-test (1.1.0)
156
- rack (>= 1.0, < 3)
157
- rails (6.1.0)
158
- actioncable (= 6.1.0)
159
- actionmailbox (= 6.1.0)
160
- actionmailer (= 6.1.0)
161
- actionpack (= 6.1.0)
162
- actiontext (= 6.1.0)
163
- actionview (= 6.1.0)
164
- activejob (= 6.1.0)
165
- activemodel (= 6.1.0)
166
- activerecord (= 6.1.0)
167
- activestorage (= 6.1.0)
168
- activesupport (= 6.1.0)
169
- bundler (>= 1.15.0)
170
- railties (= 6.1.0)
171
- sprockets-rails (>= 2.0.0)
172
- rails-dom-testing (2.0.3)
173
- activesupport (>= 4.2.0)
174
- nokogiri (>= 1.6)
175
- rails-html-sanitizer (1.3.0)
176
- loofah (~> 2.3)
177
- railties (6.1.0)
178
- actionpack (= 6.1.0)
179
- activesupport (= 6.1.0)
180
- method_source
181
- rake (>= 0.8.7)
182
- thor (~> 1.0)
183
- rake (13.0.3)
184
- rspec (3.10.0)
185
- rspec-core (~> 3.10.0)
186
- rspec-expectations (~> 3.10.0)
187
- rspec-mocks (~> 3.10.0)
188
- rspec-core (3.10.1)
189
- rspec-support (~> 3.10.0)
190
- rspec-expectations (3.10.1)
191
- diff-lcs (>= 1.2.0, < 2.0)
192
- rspec-support (~> 3.10.0)
193
- rspec-mocks (3.10.1)
194
- diff-lcs (>= 1.2.0, < 2.0)
195
- rspec-support (~> 3.10.0)
196
- rspec-support (3.10.1)
197
- sprockets (4.0.2)
198
- concurrent-ruby (~> 1.0)
199
- rack (> 1, < 3)
200
- sprockets-rails (3.2.2)
201
- actionpack (>= 4.0)
202
- activesupport (>= 4.0)
203
- sprockets (>= 3.0.0)
204
- sqlite3 (1.4.2)
205
- thor (1.0.1)
206
- thread_safe (0.3.6)
207
- tzinfo (2.0.4)
208
- concurrent-ruby (~> 1.0)
209
- unparser (0.5.6)
210
- abstract_type (~> 0.0.7)
211
- adamantium (~> 0.2.0)
212
- anima (~> 0.3.1)
213
- concord (~> 0.1.5)
214
- diff-lcs (~> 1.3)
215
- equalizer (~> 0.0.9)
216
- mprelude (~> 0.1.0)
217
- parser (>= 3.0.0)
218
- procto (~> 0.0.2)
219
- variable (0.0.1)
220
- equalizer (~> 0.0.11)
221
- websocket-driver (0.7.3)
222
- websocket-extensions (>= 0.1.0)
223
- websocket-extensions (0.1.5)
224
- zeitwerk (2.4.2)
225
-
226
- PLATFORMS
227
- ruby
228
-
229
- DEPENDENCIES
230
- childprocess
231
- fakefs (~> 1.3)
232
- mutant (~> 0.10.21)
233
- mutant-license!
234
- mutant-rspec (~> 0.10.21)
235
- mysql2 (= 0.5.3)
236
- pg (= 1.2.3)
237
- rails (= 6.1.0)
238
- rails_event_store_active_record!
239
- rake (>= 10.0)
240
- rspec (~> 3.6)
241
- ruby_event_store!
242
- sqlite3 (= 1.4.2)
243
-
244
- BUNDLED WITH
245
- 2.1.4