rails_event_store_active_record 1.3.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/.mutant.yml +1 -0
  3. data/Gemfile +5 -10
  4. data/Gemfile.lock +245 -0
  5. data/Gemfile.rails_5_0 +13 -0
  6. data/Gemfile.rails_5_0.lock +217 -0
  7. data/Gemfile.rails_5_1 +13 -0
  8. data/Gemfile.rails_5_1.lock +217 -0
  9. data/Gemfile.rails_5_2 +13 -0
  10. data/Gemfile.rails_5_2.lock +225 -0
  11. data/Gemfile.rails_6_0 +13 -0
  12. data/Gemfile.rails_6_0.lock +241 -0
  13. data/Makefile +8 -15
  14. data/lib/rails_event_store_active_record/event.rb +1 -1
  15. data/lib/rails_event_store_active_record/event_repository.rb +45 -43
  16. data/lib/rails_event_store_active_record/event_repository_reader.rb +101 -37
  17. data/lib/rails_event_store_active_record/generators/{limit_for_event_id_generator.rb → add_valid_at_generator.rb} +2 -2
  18. data/lib/rails_event_store_active_record/generators/{index_by_event_type_generator.rb → created_at_precision_generator.rb} +2 -2
  19. data/lib/rails_event_store_active_record/generators/{binary_data_and_metadata_generator.rb → no_global_stream_entries_generator.rb} +2 -4
  20. data/lib/rails_event_store_active_record/generators/templates/add_valid_at_template.rb +14 -0
  21. data/lib/rails_event_store_active_record/generators/templates/create_event_store_events_template.rb +15 -9
  22. data/lib/rails_event_store_active_record/generators/templates/created_at_precision_template.rb +45 -0
  23. data/lib/rails_event_store_active_record/generators/templates/no_global_stream_entries_template.rb +59 -0
  24. data/lib/rails_event_store_active_record/index_violation_detector.rb +33 -18
  25. data/lib/rails_event_store_active_record/version.rb +1 -1
  26. data/lib/rails_event_store_active_record/with_abstract_base_class.rb +39 -0
  27. data/lib/rails_event_store_active_record/with_default_models.rb +9 -0
  28. data/lib/rails_event_store_active_record.rb +5 -3
  29. data/rails_event_store_active_record.gemspec +1 -3
  30. metadata +23 -13
  31. data/bin/console +0 -14
  32. data/bin/setup +0 -7
  33. data/lib/rails_event_store_active_record/generators/templates/binary_data_and_metadata_template.rb +0 -35
  34. data/lib/rails_event_store_active_record/generators/templates/index_by_event_type_template.rb +0 -7
  35. data/lib/rails_event_store_active_record/generators/templates/limit_for_event_id_template.rb +0 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb2560cc90a74650bd9eb549a604362011180819f8f59d4e4a786ee300cdaad6
4
- data.tar.gz: b4dfb40bda3e8881ae70592ede335d22d609416705f9eff6714d63094476103f
3
+ metadata.gz: 1180031ce1ab5bdb3d3168d7864853b4c223b4018d272b9976eabdaf597f1f95
4
+ data.tar.gz: f6788c7baec9ab5b36110bfebbb1248d48e7db920c77dfdd166b24b9ac565b5f
5
5
  SHA512:
6
- metadata.gz: dcd88fb4b224a53f8b4482674cf89ab992e7054fcf5b7f41cf73642026b1695a15a138df593457989988cb2b434c80831abacfc25d26c6ac0cf247a26d464fea
7
- data.tar.gz: a0bac1bfaa2c071d76222a3ce49199810326a48a8ab977f2a4edfdea49dee040dd8cd001adc12b6c9dff833bb22b141db88a6622f86925573c6606eda4569e0c
6
+ metadata.gz: 44369db992b76de8adfa6bfc092895927dd58c0c3a611f1b9f425364b06cbbfbd52f095fb7a740175e14ffd3bf2fd7dcc0ac10cc25ff5594c45933d9c6b37f43
7
+ data.tar.gz: 685a3d450effc7893d1f765af0d7dddcabc998bed05e3280d1c77bbb548696c173520de075dde9c13f87fc4979c4f78a3076677493a4a2ceeaf85799d7dc18a2
data/.mutant.yml ADDED
@@ -0,0 +1 @@
1
+ ../.mutant.yml
data/Gemfile CHANGED
@@ -2,17 +2,12 @@ source 'https://rubygems.org'
2
2
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
3
  gemspec
4
4
 
5
- eval_gemfile File.expand_path('../support/bundler/Gemfile.shared', __dir__)
5
+ eval_gemfile '../support/bundler/Gemfile.shared'
6
6
 
7
7
  gem 'ruby_event_store', path: '../ruby_event_store'
8
- gem 'pg', '1.2.2'
8
+ gem 'pg', '1.2.3'
9
9
  gem 'mysql2', '0.5.3'
10
- gem 'fakefs', '~> 0.11.2'
10
+ gem 'fakefs', '~> 1.3'
11
11
  gem 'childprocess'
12
- gem 'rails', ENV['RAILS_VERSION']
13
-
14
- if Gem::Version.new(ENV['RAILS_VERSION']) >= Gem::Version.new('6.0.0')
15
- gem 'sqlite3', '1.4.2'
16
- else
17
- gem 'sqlite3', '1.3.13'
18
- end
12
+ gem 'rails', '6.1.0'
13
+ gem 'sqlite3', '1.4.2'
data/Gemfile.lock ADDED
@@ -0,0 +1,245 @@
1
+ PATH
2
+ remote: ../ruby_event_store
3
+ specs:
4
+ ruby_event_store (2.0.0)
5
+ concurrent-ruby (~> 1.0, >= 1.1.6)
6
+
7
+ PATH
8
+ remote: .
9
+ specs:
10
+ rails_event_store_active_record (2.0.0)
11
+ activemodel (>= 3.0)
12
+ activerecord-import (>= 1.0.2)
13
+ activesupport (>= 3.0)
14
+ ruby_event_store (= 2.0.0)
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
data/Gemfile.rails_5_0 ADDED
@@ -0,0 +1,13 @@
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.2'
9
+ gem 'mysql2', '0.5.3'
10
+ gem 'fakefs', '~> 1.2'
11
+ gem 'childprocess'
12
+ gem 'rails', '5.0.7.2'
13
+ gem 'sqlite3', '1.3.13'
@@ -0,0 +1,217 @@
1
+ PATH
2
+ remote: ../ruby_event_store
3
+ specs:
4
+ ruby_event_store (2.0.0)
5
+ concurrent-ruby (~> 1.0, >= 1.1.6)
6
+
7
+ PATH
8
+ remote: .
9
+ specs:
10
+ rails_event_store_active_record (2.0.0)
11
+ activemodel (>= 3.0)
12
+ activerecord-import (>= 1.0.2)
13
+ activesupport (>= 3.0)
14
+ ruby_event_store (= 2.0.0)
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 (5.0.7.2)
22
+ actionpack (= 5.0.7.2)
23
+ nio4r (>= 1.2, < 3.0)
24
+ websocket-driver (~> 0.6.1)
25
+ actionmailer (5.0.7.2)
26
+ actionpack (= 5.0.7.2)
27
+ actionview (= 5.0.7.2)
28
+ activejob (= 5.0.7.2)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ rails-dom-testing (~> 2.0)
31
+ actionpack (5.0.7.2)
32
+ actionview (= 5.0.7.2)
33
+ activesupport (= 5.0.7.2)
34
+ rack (~> 2.0)
35
+ rack-test (~> 0.6.3)
36
+ rails-dom-testing (~> 2.0)
37
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
38
+ actionview (5.0.7.2)
39
+ activesupport (= 5.0.7.2)
40
+ builder (~> 3.1)
41
+ erubis (~> 2.7.0)
42
+ rails-dom-testing (~> 2.0)
43
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
44
+ activejob (5.0.7.2)
45
+ activesupport (= 5.0.7.2)
46
+ globalid (>= 0.3.6)
47
+ activemodel (5.0.7.2)
48
+ activesupport (= 5.0.7.2)
49
+ activerecord (5.0.7.2)
50
+ activemodel (= 5.0.7.2)
51
+ activesupport (= 5.0.7.2)
52
+ arel (~> 7.0)
53
+ activerecord-import (1.0.7)
54
+ activerecord (>= 3.2)
55
+ activesupport (5.0.7.2)
56
+ concurrent-ruby (~> 1.0, >= 1.0.2)
57
+ i18n (>= 0.7, < 2)
58
+ minitest (~> 5.1)
59
+ tzinfo (~> 1.1)
60
+ adamantium (0.2.0)
61
+ ice_nine (~> 0.11.0)
62
+ memoizable (~> 0.4.0)
63
+ anima (0.3.2)
64
+ abstract_type (~> 0.0.7)
65
+ adamantium (~> 0.2)
66
+ equalizer (~> 0.0.11)
67
+ arel (7.1.4)
68
+ ast (2.4.1)
69
+ builder (3.2.4)
70
+ childprocess (4.0.0)
71
+ concord (0.1.6)
72
+ adamantium (~> 0.2.0)
73
+ equalizer (~> 0.0.9)
74
+ concurrent-ruby (1.1.7)
75
+ crass (1.0.6)
76
+ diff-lcs (1.4.4)
77
+ equalizer (0.0.11)
78
+ erubis (2.7.0)
79
+ fakefs (1.3.0)
80
+ globalid (0.4.2)
81
+ activesupport (>= 4.2.0)
82
+ i18n (1.8.5)
83
+ concurrent-ruby (~> 1.0)
84
+ ice_nine (0.11.2)
85
+ loofah (2.8.0)
86
+ crass (~> 1.0.2)
87
+ nokogiri (>= 1.5.9)
88
+ mail (2.7.1)
89
+ mini_mime (>= 0.1.1)
90
+ memoizable (0.4.2)
91
+ thread_safe (~> 0.3, >= 0.3.1)
92
+ method_source (1.0.0)
93
+ mini_mime (1.0.2)
94
+ mini_portile2 (2.4.0)
95
+ minitest (5.14.2)
96
+ mprelude (0.1.0)
97
+ abstract_type (~> 0.0.7)
98
+ adamantium (~> 0.2.0)
99
+ concord (~> 0.1.5)
100
+ equalizer (~> 0.0.9)
101
+ ice_nine (~> 0.11.1)
102
+ procto (~> 0.0.2)
103
+ mutant (0.10.22)
104
+ abstract_type (~> 0.0.7)
105
+ adamantium (~> 0.2.0)
106
+ anima (~> 0.3.1)
107
+ ast (~> 2.2)
108
+ concord (~> 0.1.5)
109
+ diff-lcs (~> 1.3)
110
+ equalizer (~> 0.0.9)
111
+ ice_nine (~> 0.11.1)
112
+ memoizable (~> 0.4.2)
113
+ mprelude (~> 0.1.0)
114
+ parser (~> 3.0.0)
115
+ procto (~> 0.0.2)
116
+ unparser (~> 0.5.6)
117
+ variable (~> 0.0.1)
118
+ mutant-license (0.1.1.2.1627430819213747598431630701693729869473.0)
119
+ mutant-rspec (0.10.22)
120
+ mutant (= 0.10.22)
121
+ rspec-core (>= 3.8.0, < 4.0.0)
122
+ mysql2 (0.5.3)
123
+ nio4r (2.5.4)
124
+ nokogiri (1.10.10)
125
+ mini_portile2 (~> 2.4.0)
126
+ parser (3.0.0.0)
127
+ ast (~> 2.4.1)
128
+ pg (1.2.2)
129
+ procto (0.0.3)
130
+ rack (2.2.3)
131
+ rack-test (0.6.3)
132
+ rack (>= 1.0)
133
+ rails (5.0.7.2)
134
+ actioncable (= 5.0.7.2)
135
+ actionmailer (= 5.0.7.2)
136
+ actionpack (= 5.0.7.2)
137
+ actionview (= 5.0.7.2)
138
+ activejob (= 5.0.7.2)
139
+ activemodel (= 5.0.7.2)
140
+ activerecord (= 5.0.7.2)
141
+ activesupport (= 5.0.7.2)
142
+ bundler (>= 1.3.0)
143
+ railties (= 5.0.7.2)
144
+ sprockets-rails (>= 2.0.0)
145
+ rails-dom-testing (2.0.3)
146
+ activesupport (>= 4.2.0)
147
+ nokogiri (>= 1.6)
148
+ rails-html-sanitizer (1.3.0)
149
+ loofah (~> 2.3)
150
+ railties (5.0.7.2)
151
+ actionpack (= 5.0.7.2)
152
+ activesupport (= 5.0.7.2)
153
+ method_source
154
+ rake (>= 0.8.7)
155
+ thor (>= 0.18.1, < 2.0)
156
+ rake (13.0.3)
157
+ rspec (3.10.0)
158
+ rspec-core (~> 3.10.0)
159
+ rspec-expectations (~> 3.10.0)
160
+ rspec-mocks (~> 3.10.0)
161
+ rspec-core (3.10.1)
162
+ rspec-support (~> 3.10.0)
163
+ rspec-expectations (3.10.1)
164
+ diff-lcs (>= 1.2.0, < 2.0)
165
+ rspec-support (~> 3.10.0)
166
+ rspec-mocks (3.10.1)
167
+ diff-lcs (>= 1.2.0, < 2.0)
168
+ rspec-support (~> 3.10.0)
169
+ rspec-support (3.10.1)
170
+ sprockets (4.0.2)
171
+ concurrent-ruby (~> 1.0)
172
+ rack (> 1, < 3)
173
+ sprockets-rails (3.2.2)
174
+ actionpack (>= 4.0)
175
+ activesupport (>= 4.0)
176
+ sprockets (>= 3.0.0)
177
+ sqlite3 (1.3.13)
178
+ thor (1.0.1)
179
+ thread_safe (0.3.6)
180
+ tzinfo (1.2.9)
181
+ thread_safe (~> 0.1)
182
+ unparser (0.5.6)
183
+ abstract_type (~> 0.0.7)
184
+ adamantium (~> 0.2.0)
185
+ anima (~> 0.3.1)
186
+ concord (~> 0.1.5)
187
+ diff-lcs (~> 1.3)
188
+ equalizer (~> 0.0.9)
189
+ mprelude (~> 0.1.0)
190
+ parser (>= 3.0.0)
191
+ procto (~> 0.0.2)
192
+ variable (0.0.1)
193
+ equalizer (~> 0.0.11)
194
+ websocket-driver (0.6.5)
195
+ websocket-extensions (>= 0.1.0)
196
+ websocket-extensions (0.1.5)
197
+
198
+ PLATFORMS
199
+ ruby
200
+
201
+ DEPENDENCIES
202
+ childprocess
203
+ fakefs (~> 1.2)
204
+ mutant (~> 0.10.21)
205
+ mutant-license!
206
+ mutant-rspec (~> 0.10.21)
207
+ mysql2 (= 0.5.3)
208
+ pg (= 1.2.2)
209
+ rails (= 5.0.7.2)
210
+ rails_event_store_active_record!
211
+ rake (>= 10.0)
212
+ rspec (~> 3.6)
213
+ ruby_event_store!
214
+ sqlite3 (= 1.3.13)
215
+
216
+ BUNDLED WITH
217
+ 2.1.4
data/Gemfile.rails_5_1 ADDED
@@ -0,0 +1,13 @@
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.2'
9
+ gem 'mysql2', '0.5.3'
10
+ gem 'fakefs', '~> 1.2'
11
+ gem 'childprocess'
12
+ gem 'rails', '5.1.7'
13
+ gem 'sqlite3', '1.3.13'