tdc 1.1 → 1.3
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 +4 -4
- data/.gitignore +3 -1
- data/.rubocop.yml +9 -4
- data/.ruby-version +1 -1
- data/Appraisals +4 -8
- data/CHANGELOG.md +17 -0
- data/Gemfile +12 -0
- data/gemfiles/rails_7_2.gemfile +12 -0
- data/gemfiles/rails_8_0.gemfile +19 -0
- data/lib/tdc/data_definition.rb +2 -0
- data/lib/tdc/data_definition_file_reader.rb +2 -0
- data/lib/tdc/definition_resolvers/definition_resolver.rb +2 -0
- data/lib/tdc/definition_resolvers/tag_resolver.rb +2 -0
- data/lib/tdc/definition_resolvers.rb +2 -0
- data/lib/tdc/extended_attributes/default_interpreter.rb +4 -2
- data/lib/tdc/extended_attributes/interpreter_base.rb +2 -0
- data/lib/tdc/extended_attributes/interpreter_registry.rb +2 -0
- data/lib/tdc/extended_attributes.rb +2 -0
- data/lib/tdc/fatal_error.rb +2 -0
- data/lib/tdc/generators/catalog_entries.rb +2 -0
- data/lib/tdc/generators/definition_resolvable.rb +2 -0
- data/lib/tdc/generators/definition_sourcable.rb +2 -0
- data/lib/tdc/generators/generation_context.rb +2 -0
- data/lib/tdc/generators/generator_base.rb +2 -0
- data/lib/tdc/generators/standard_generator.rb +2 -0
- data/lib/tdc/generators.rb +2 -0
- data/lib/tdc/in_memory_data_definition.rb +2 -0
- data/lib/tdc/missing_override_error.rb +2 -0
- data/lib/tdc/version.rb +3 -1
- data/lib/tdc/with_indifferent_access_decorator.rb +2 -0
- data/lib/tdc/yaml_readers/null_yaml_reader.rb +2 -0
- data/lib/tdc/yaml_readers/yaml_reader.rb +2 -0
- data/lib/tdc/yaml_readers/yaml_reader_base.rb +4 -2
- data/lib/tdc/yaml_readers/yaml_reader_factory.rb +2 -0
- data/lib/tdc/yaml_readers/yaml_reader_with_expansion.rb +2 -0
- data/lib/tdc/yaml_readers.rb +2 -0
- data/lib/tdc.rb +2 -0
- data/tdc.gemspec +5 -12
- metadata +17 -137
- data/gemfiles/rails_7.gemfile +0 -7
- data/gemfiles/rails_7.gemfile.lock +0 -312
- data/gemfiles/rails_7_1.gemfile +0 -7
- data/gemfiles/rails_7_1.gemfile.lock +0 -346
- data/gemfiles/rails_7_2.gemfile.lock +0 -353
|
@@ -1,312 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: ..
|
|
3
|
-
specs:
|
|
4
|
-
tdc (1.1)
|
|
5
|
-
activesupport (>= 7.0, < 8.0)
|
|
6
|
-
zeitwerk (>= 2.7)
|
|
7
|
-
|
|
8
|
-
GEM
|
|
9
|
-
remote: https://rubygems.org/
|
|
10
|
-
specs:
|
|
11
|
-
actioncable (7.0.8.4)
|
|
12
|
-
actionpack (= 7.0.8.4)
|
|
13
|
-
activesupport (= 7.0.8.4)
|
|
14
|
-
nio4r (~> 2.0)
|
|
15
|
-
websocket-driver (>= 0.6.1)
|
|
16
|
-
actionmailbox (7.0.8.4)
|
|
17
|
-
actionpack (= 7.0.8.4)
|
|
18
|
-
activejob (= 7.0.8.4)
|
|
19
|
-
activerecord (= 7.0.8.4)
|
|
20
|
-
activestorage (= 7.0.8.4)
|
|
21
|
-
activesupport (= 7.0.8.4)
|
|
22
|
-
mail (>= 2.7.1)
|
|
23
|
-
net-imap
|
|
24
|
-
net-pop
|
|
25
|
-
net-smtp
|
|
26
|
-
actionmailer (7.0.8.4)
|
|
27
|
-
actionpack (= 7.0.8.4)
|
|
28
|
-
actionview (= 7.0.8.4)
|
|
29
|
-
activejob (= 7.0.8.4)
|
|
30
|
-
activesupport (= 7.0.8.4)
|
|
31
|
-
mail (~> 2.5, >= 2.5.4)
|
|
32
|
-
net-imap
|
|
33
|
-
net-pop
|
|
34
|
-
net-smtp
|
|
35
|
-
rails-dom-testing (~> 2.0)
|
|
36
|
-
actionpack (7.0.8.4)
|
|
37
|
-
actionview (= 7.0.8.4)
|
|
38
|
-
activesupport (= 7.0.8.4)
|
|
39
|
-
rack (~> 2.0, >= 2.2.4)
|
|
40
|
-
rack-test (>= 0.6.3)
|
|
41
|
-
rails-dom-testing (~> 2.0)
|
|
42
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
43
|
-
actiontext (7.0.8.4)
|
|
44
|
-
actionpack (= 7.0.8.4)
|
|
45
|
-
activerecord (= 7.0.8.4)
|
|
46
|
-
activestorage (= 7.0.8.4)
|
|
47
|
-
activesupport (= 7.0.8.4)
|
|
48
|
-
globalid (>= 0.6.0)
|
|
49
|
-
nokogiri (>= 1.8.5)
|
|
50
|
-
actionview (7.0.8.4)
|
|
51
|
-
activesupport (= 7.0.8.4)
|
|
52
|
-
builder (~> 3.1)
|
|
53
|
-
erubi (~> 1.4)
|
|
54
|
-
rails-dom-testing (~> 2.0)
|
|
55
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
56
|
-
activejob (7.0.8.4)
|
|
57
|
-
activesupport (= 7.0.8.4)
|
|
58
|
-
globalid (>= 0.3.6)
|
|
59
|
-
activemodel (7.0.8.4)
|
|
60
|
-
activesupport (= 7.0.8.4)
|
|
61
|
-
activerecord (7.0.8.4)
|
|
62
|
-
activemodel (= 7.0.8.4)
|
|
63
|
-
activesupport (= 7.0.8.4)
|
|
64
|
-
activestorage (7.0.8.4)
|
|
65
|
-
actionpack (= 7.0.8.4)
|
|
66
|
-
activejob (= 7.0.8.4)
|
|
67
|
-
activerecord (= 7.0.8.4)
|
|
68
|
-
activesupport (= 7.0.8.4)
|
|
69
|
-
marcel (~> 1.0)
|
|
70
|
-
mini_mime (>= 1.1.0)
|
|
71
|
-
activesupport (7.0.8.4)
|
|
72
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
73
|
-
i18n (>= 1.6, < 2)
|
|
74
|
-
minitest (>= 5.1)
|
|
75
|
-
tzinfo (~> 2.0)
|
|
76
|
-
addressable (2.8.7)
|
|
77
|
-
public_suffix (>= 2.0.2, < 7.0)
|
|
78
|
-
appraisal (2.5.0)
|
|
79
|
-
bundler
|
|
80
|
-
rake
|
|
81
|
-
thor (>= 0.14.0)
|
|
82
|
-
ast (2.4.2)
|
|
83
|
-
axiom-types (0.1.1)
|
|
84
|
-
descendants_tracker (~> 0.0.4)
|
|
85
|
-
ice_nine (~> 0.11.0)
|
|
86
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
87
|
-
bigdecimal (3.1.8)
|
|
88
|
-
builder (3.3.0)
|
|
89
|
-
childprocess (5.1.0)
|
|
90
|
-
logger (~> 1.5)
|
|
91
|
-
coercible (1.0.0)
|
|
92
|
-
descendants_tracker (~> 0.0.1)
|
|
93
|
-
concurrent-ruby (1.3.4)
|
|
94
|
-
crass (1.0.6)
|
|
95
|
-
date (3.3.4)
|
|
96
|
-
descendants_tracker (0.0.4)
|
|
97
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
98
|
-
diff-lcs (1.5.1)
|
|
99
|
-
docile (1.4.1)
|
|
100
|
-
dry-configurable (1.2.0)
|
|
101
|
-
dry-core (~> 1.0, < 2)
|
|
102
|
-
zeitwerk (~> 2.6)
|
|
103
|
-
dry-core (1.0.1)
|
|
104
|
-
concurrent-ruby (~> 1.0)
|
|
105
|
-
zeitwerk (~> 2.6)
|
|
106
|
-
dry-inflector (1.1.0)
|
|
107
|
-
dry-initializer (3.1.1)
|
|
108
|
-
dry-logic (1.5.0)
|
|
109
|
-
concurrent-ruby (~> 1.0)
|
|
110
|
-
dry-core (~> 1.0, < 2)
|
|
111
|
-
zeitwerk (~> 2.6)
|
|
112
|
-
dry-schema (1.13.4)
|
|
113
|
-
concurrent-ruby (~> 1.0)
|
|
114
|
-
dry-configurable (~> 1.0, >= 1.0.1)
|
|
115
|
-
dry-core (~> 1.0, < 2)
|
|
116
|
-
dry-initializer (~> 3.0)
|
|
117
|
-
dry-logic (>= 1.4, < 2)
|
|
118
|
-
dry-types (>= 1.7, < 2)
|
|
119
|
-
zeitwerk (~> 2.6)
|
|
120
|
-
dry-types (1.7.2)
|
|
121
|
-
bigdecimal (~> 3.0)
|
|
122
|
-
concurrent-ruby (~> 1.0)
|
|
123
|
-
dry-core (~> 1.0)
|
|
124
|
-
dry-inflector (~> 1.0)
|
|
125
|
-
dry-logic (~> 1.4)
|
|
126
|
-
zeitwerk (~> 2.6)
|
|
127
|
-
erubi (1.13.0)
|
|
128
|
-
flay (2.13.3)
|
|
129
|
-
erubi (~> 1.10)
|
|
130
|
-
path_expander (~> 1.0)
|
|
131
|
-
ruby_parser (~> 3.0)
|
|
132
|
-
sexp_processor (~> 4.0)
|
|
133
|
-
flog (4.8.0)
|
|
134
|
-
path_expander (~> 1.0)
|
|
135
|
-
ruby_parser (~> 3.1, > 3.1.0)
|
|
136
|
-
sexp_processor (~> 4.8)
|
|
137
|
-
globalid (1.2.1)
|
|
138
|
-
activesupport (>= 6.1)
|
|
139
|
-
i18n (1.14.5)
|
|
140
|
-
concurrent-ruby (~> 1.0)
|
|
141
|
-
ice_nine (0.11.2)
|
|
142
|
-
json (2.9.0)
|
|
143
|
-
language_server-protocol (3.17.0.3)
|
|
144
|
-
launchy (3.0.1)
|
|
145
|
-
addressable (~> 2.8)
|
|
146
|
-
childprocess (~> 5.0)
|
|
147
|
-
logger (1.6.0)
|
|
148
|
-
loofah (2.22.0)
|
|
149
|
-
crass (~> 1.0.2)
|
|
150
|
-
nokogiri (>= 1.12.0)
|
|
151
|
-
mail (2.8.1)
|
|
152
|
-
mini_mime (>= 0.1.1)
|
|
153
|
-
net-imap
|
|
154
|
-
net-pop
|
|
155
|
-
net-smtp
|
|
156
|
-
marcel (1.0.4)
|
|
157
|
-
method_source (1.1.0)
|
|
158
|
-
mini_mime (1.1.5)
|
|
159
|
-
minitest (5.25.0)
|
|
160
|
-
net-imap (0.4.14)
|
|
161
|
-
date
|
|
162
|
-
net-protocol
|
|
163
|
-
net-pop (0.1.2)
|
|
164
|
-
net-protocol
|
|
165
|
-
net-protocol (0.2.2)
|
|
166
|
-
timeout
|
|
167
|
-
net-smtp (0.5.0)
|
|
168
|
-
net-protocol
|
|
169
|
-
nio4r (2.7.3)
|
|
170
|
-
nokogiri (1.16.7-arm64-darwin)
|
|
171
|
-
racc (~> 1.4)
|
|
172
|
-
parallel (1.26.3)
|
|
173
|
-
parser (3.3.4.2)
|
|
174
|
-
ast (~> 2.4.1)
|
|
175
|
-
racc
|
|
176
|
-
path_expander (1.1.2)
|
|
177
|
-
public_suffix (6.0.1)
|
|
178
|
-
racc (1.8.1)
|
|
179
|
-
rack (2.2.9)
|
|
180
|
-
rack-test (2.1.0)
|
|
181
|
-
rack (>= 1.3)
|
|
182
|
-
rails (7.0.8.4)
|
|
183
|
-
actioncable (= 7.0.8.4)
|
|
184
|
-
actionmailbox (= 7.0.8.4)
|
|
185
|
-
actionmailer (= 7.0.8.4)
|
|
186
|
-
actionpack (= 7.0.8.4)
|
|
187
|
-
actiontext (= 7.0.8.4)
|
|
188
|
-
actionview (= 7.0.8.4)
|
|
189
|
-
activejob (= 7.0.8.4)
|
|
190
|
-
activemodel (= 7.0.8.4)
|
|
191
|
-
activerecord (= 7.0.8.4)
|
|
192
|
-
activestorage (= 7.0.8.4)
|
|
193
|
-
activesupport (= 7.0.8.4)
|
|
194
|
-
bundler (>= 1.15.0)
|
|
195
|
-
railties (= 7.0.8.4)
|
|
196
|
-
rails-dom-testing (2.2.0)
|
|
197
|
-
activesupport (>= 5.0.0)
|
|
198
|
-
minitest
|
|
199
|
-
nokogiri (>= 1.6)
|
|
200
|
-
rails-html-sanitizer (1.6.0)
|
|
201
|
-
loofah (~> 2.21)
|
|
202
|
-
nokogiri (~> 1.14)
|
|
203
|
-
railties (7.0.8.4)
|
|
204
|
-
actionpack (= 7.0.8.4)
|
|
205
|
-
activesupport (= 7.0.8.4)
|
|
206
|
-
method_source
|
|
207
|
-
rake (>= 12.2)
|
|
208
|
-
thor (~> 1.0)
|
|
209
|
-
zeitwerk (~> 2.5)
|
|
210
|
-
rainbow (3.1.1)
|
|
211
|
-
rake (13.2.1)
|
|
212
|
-
reek (6.3.0)
|
|
213
|
-
dry-schema (~> 1.13.0)
|
|
214
|
-
parser (~> 3.3.0)
|
|
215
|
-
rainbow (>= 2.0, < 4.0)
|
|
216
|
-
rexml (~> 3.1)
|
|
217
|
-
regexp_parser (2.9.3)
|
|
218
|
-
rexml (3.3.5)
|
|
219
|
-
strscan
|
|
220
|
-
rspec (3.13.0)
|
|
221
|
-
rspec-core (~> 3.13.0)
|
|
222
|
-
rspec-expectations (~> 3.13.0)
|
|
223
|
-
rspec-mocks (~> 3.13.0)
|
|
224
|
-
rspec-core (3.13.0)
|
|
225
|
-
rspec-support (~> 3.13.0)
|
|
226
|
-
rspec-expectations (3.13.1)
|
|
227
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
228
|
-
rspec-support (~> 3.13.0)
|
|
229
|
-
rspec-mocks (3.13.1)
|
|
230
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
231
|
-
rspec-support (~> 3.13.0)
|
|
232
|
-
rspec-support (3.13.1)
|
|
233
|
-
rubocop (1.69.2)
|
|
234
|
-
json (~> 2.3)
|
|
235
|
-
language_server-protocol (>= 3.17.0)
|
|
236
|
-
parallel (~> 1.10)
|
|
237
|
-
parser (>= 3.3.0.2)
|
|
238
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
239
|
-
regexp_parser (>= 2.9.3, < 3.0)
|
|
240
|
-
rubocop-ast (>= 1.36.2, < 2.0)
|
|
241
|
-
ruby-progressbar (~> 1.7)
|
|
242
|
-
unicode-display_width (>= 2.4.0, < 4.0)
|
|
243
|
-
rubocop-ast (1.37.0)
|
|
244
|
-
parser (>= 3.3.1.0)
|
|
245
|
-
rubocop-performance (1.23.0)
|
|
246
|
-
rubocop (>= 1.48.1, < 2.0)
|
|
247
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
248
|
-
rubocop-rake (0.6.0)
|
|
249
|
-
rubocop (~> 1.0)
|
|
250
|
-
rubocop-rspec (3.3.0)
|
|
251
|
-
rubocop (~> 1.61)
|
|
252
|
-
ruby-progressbar (1.13.0)
|
|
253
|
-
ruby_parser (3.21.1)
|
|
254
|
-
racc (~> 1.5)
|
|
255
|
-
sexp_processor (~> 4.16)
|
|
256
|
-
rubycritic (4.9.0)
|
|
257
|
-
flay (~> 2.13)
|
|
258
|
-
flog (~> 4.7)
|
|
259
|
-
launchy (>= 2.5.2)
|
|
260
|
-
parser (>= 3.2.2.1)
|
|
261
|
-
rainbow (~> 3.1.1)
|
|
262
|
-
reek (~> 6.0, < 7.0)
|
|
263
|
-
rexml
|
|
264
|
-
ruby_parser (~> 3.20)
|
|
265
|
-
simplecov (>= 0.22.0)
|
|
266
|
-
tty-which (~> 0.5.0)
|
|
267
|
-
virtus (~> 2.0)
|
|
268
|
-
sexp_processor (4.17.2)
|
|
269
|
-
simplecov (0.22.0)
|
|
270
|
-
docile (~> 1.1)
|
|
271
|
-
simplecov-html (~> 0.11)
|
|
272
|
-
simplecov_json_formatter (~> 0.1)
|
|
273
|
-
simplecov-html (0.12.3)
|
|
274
|
-
simplecov_json_formatter (0.1.4)
|
|
275
|
-
strscan (3.1.0)
|
|
276
|
-
thor (1.3.1)
|
|
277
|
-
thread_safe (0.3.6)
|
|
278
|
-
timeout (0.4.1)
|
|
279
|
-
tty-which (0.5.0)
|
|
280
|
-
tzinfo (2.0.6)
|
|
281
|
-
concurrent-ruby (~> 1.0)
|
|
282
|
-
unicode-display_width (3.1.2)
|
|
283
|
-
unicode-emoji (~> 4.0, >= 4.0.4)
|
|
284
|
-
unicode-emoji (4.0.4)
|
|
285
|
-
virtus (2.0.0)
|
|
286
|
-
axiom-types (~> 0.1)
|
|
287
|
-
coercible (~> 1.0)
|
|
288
|
-
descendants_tracker (~> 0.0, >= 0.0.3)
|
|
289
|
-
websocket-driver (0.7.6)
|
|
290
|
-
websocket-extensions (>= 0.1.0)
|
|
291
|
-
websocket-extensions (0.1.5)
|
|
292
|
-
zeitwerk (2.7.1)
|
|
293
|
-
|
|
294
|
-
PLATFORMS
|
|
295
|
-
arm64-darwin-23
|
|
296
|
-
arm64-darwin-24
|
|
297
|
-
|
|
298
|
-
DEPENDENCIES
|
|
299
|
-
appraisal (~> 2.5)
|
|
300
|
-
rails (= 7.0.8.4)
|
|
301
|
-
rake (~> 13.2)
|
|
302
|
-
rspec (~> 3.13)
|
|
303
|
-
rubocop (~> 1.69)
|
|
304
|
-
rubocop-performance (~> 1.23)
|
|
305
|
-
rubocop-rake (~> 0.6)
|
|
306
|
-
rubocop-rspec (~> 3.3)
|
|
307
|
-
rubycritic (~> 4.9)
|
|
308
|
-
simplecov (~> 0.22)
|
|
309
|
-
tdc!
|
|
310
|
-
|
|
311
|
-
BUNDLED WITH
|
|
312
|
-
2.4.8
|
data/gemfiles/rails_7_1.gemfile
DELETED
|
@@ -1,346 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: ..
|
|
3
|
-
specs:
|
|
4
|
-
tdc (1.1)
|
|
5
|
-
activesupport (>= 7.0, < 8.0)
|
|
6
|
-
zeitwerk (>= 2.7)
|
|
7
|
-
|
|
8
|
-
GEM
|
|
9
|
-
remote: https://rubygems.org/
|
|
10
|
-
specs:
|
|
11
|
-
actioncable (7.1.5.1)
|
|
12
|
-
actionpack (= 7.1.5.1)
|
|
13
|
-
activesupport (= 7.1.5.1)
|
|
14
|
-
nio4r (~> 2.0)
|
|
15
|
-
websocket-driver (>= 0.6.1)
|
|
16
|
-
zeitwerk (~> 2.6)
|
|
17
|
-
actionmailbox (7.1.5.1)
|
|
18
|
-
actionpack (= 7.1.5.1)
|
|
19
|
-
activejob (= 7.1.5.1)
|
|
20
|
-
activerecord (= 7.1.5.1)
|
|
21
|
-
activestorage (= 7.1.5.1)
|
|
22
|
-
activesupport (= 7.1.5.1)
|
|
23
|
-
mail (>= 2.7.1)
|
|
24
|
-
net-imap
|
|
25
|
-
net-pop
|
|
26
|
-
net-smtp
|
|
27
|
-
actionmailer (7.1.5.1)
|
|
28
|
-
actionpack (= 7.1.5.1)
|
|
29
|
-
actionview (= 7.1.5.1)
|
|
30
|
-
activejob (= 7.1.5.1)
|
|
31
|
-
activesupport (= 7.1.5.1)
|
|
32
|
-
mail (~> 2.5, >= 2.5.4)
|
|
33
|
-
net-imap
|
|
34
|
-
net-pop
|
|
35
|
-
net-smtp
|
|
36
|
-
rails-dom-testing (~> 2.2)
|
|
37
|
-
actionpack (7.1.5.1)
|
|
38
|
-
actionview (= 7.1.5.1)
|
|
39
|
-
activesupport (= 7.1.5.1)
|
|
40
|
-
nokogiri (>= 1.8.5)
|
|
41
|
-
racc
|
|
42
|
-
rack (>= 2.2.4)
|
|
43
|
-
rack-session (>= 1.0.1)
|
|
44
|
-
rack-test (>= 0.6.3)
|
|
45
|
-
rails-dom-testing (~> 2.2)
|
|
46
|
-
rails-html-sanitizer (~> 1.6)
|
|
47
|
-
actiontext (7.1.5.1)
|
|
48
|
-
actionpack (= 7.1.5.1)
|
|
49
|
-
activerecord (= 7.1.5.1)
|
|
50
|
-
activestorage (= 7.1.5.1)
|
|
51
|
-
activesupport (= 7.1.5.1)
|
|
52
|
-
globalid (>= 0.6.0)
|
|
53
|
-
nokogiri (>= 1.8.5)
|
|
54
|
-
actionview (7.1.5.1)
|
|
55
|
-
activesupport (= 7.1.5.1)
|
|
56
|
-
builder (~> 3.1)
|
|
57
|
-
erubi (~> 1.11)
|
|
58
|
-
rails-dom-testing (~> 2.2)
|
|
59
|
-
rails-html-sanitizer (~> 1.6)
|
|
60
|
-
activejob (7.1.5.1)
|
|
61
|
-
activesupport (= 7.1.5.1)
|
|
62
|
-
globalid (>= 0.3.6)
|
|
63
|
-
activemodel (7.1.5.1)
|
|
64
|
-
activesupport (= 7.1.5.1)
|
|
65
|
-
activerecord (7.1.5.1)
|
|
66
|
-
activemodel (= 7.1.5.1)
|
|
67
|
-
activesupport (= 7.1.5.1)
|
|
68
|
-
timeout (>= 0.4.0)
|
|
69
|
-
activestorage (7.1.5.1)
|
|
70
|
-
actionpack (= 7.1.5.1)
|
|
71
|
-
activejob (= 7.1.5.1)
|
|
72
|
-
activerecord (= 7.1.5.1)
|
|
73
|
-
activesupport (= 7.1.5.1)
|
|
74
|
-
marcel (~> 1.0)
|
|
75
|
-
activesupport (7.1.5.1)
|
|
76
|
-
base64
|
|
77
|
-
benchmark (>= 0.3)
|
|
78
|
-
bigdecimal
|
|
79
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
80
|
-
connection_pool (>= 2.2.5)
|
|
81
|
-
drb
|
|
82
|
-
i18n (>= 1.6, < 2)
|
|
83
|
-
logger (>= 1.4.2)
|
|
84
|
-
minitest (>= 5.1)
|
|
85
|
-
mutex_m
|
|
86
|
-
securerandom (>= 0.3)
|
|
87
|
-
tzinfo (~> 2.0)
|
|
88
|
-
addressable (2.8.7)
|
|
89
|
-
public_suffix (>= 2.0.2, < 7.0)
|
|
90
|
-
appraisal (2.5.0)
|
|
91
|
-
bundler
|
|
92
|
-
rake
|
|
93
|
-
thor (>= 0.14.0)
|
|
94
|
-
ast (2.4.2)
|
|
95
|
-
axiom-types (0.1.1)
|
|
96
|
-
descendants_tracker (~> 0.0.4)
|
|
97
|
-
ice_nine (~> 0.11.0)
|
|
98
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
99
|
-
base64 (0.2.0)
|
|
100
|
-
benchmark (0.4.0)
|
|
101
|
-
bigdecimal (3.1.8)
|
|
102
|
-
builder (3.3.0)
|
|
103
|
-
childprocess (5.1.0)
|
|
104
|
-
logger (~> 1.5)
|
|
105
|
-
coercible (1.0.0)
|
|
106
|
-
descendants_tracker (~> 0.0.1)
|
|
107
|
-
concurrent-ruby (1.3.4)
|
|
108
|
-
connection_pool (2.4.1)
|
|
109
|
-
crass (1.0.6)
|
|
110
|
-
date (3.4.1)
|
|
111
|
-
descendants_tracker (0.0.4)
|
|
112
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
113
|
-
diff-lcs (1.5.1)
|
|
114
|
-
docile (1.4.1)
|
|
115
|
-
drb (2.2.1)
|
|
116
|
-
dry-configurable (1.2.0)
|
|
117
|
-
dry-core (~> 1.0, < 2)
|
|
118
|
-
zeitwerk (~> 2.6)
|
|
119
|
-
dry-core (1.0.1)
|
|
120
|
-
concurrent-ruby (~> 1.0)
|
|
121
|
-
zeitwerk (~> 2.6)
|
|
122
|
-
dry-inflector (1.1.0)
|
|
123
|
-
dry-initializer (3.1.1)
|
|
124
|
-
dry-logic (1.5.0)
|
|
125
|
-
concurrent-ruby (~> 1.0)
|
|
126
|
-
dry-core (~> 1.0, < 2)
|
|
127
|
-
zeitwerk (~> 2.6)
|
|
128
|
-
dry-schema (1.13.4)
|
|
129
|
-
concurrent-ruby (~> 1.0)
|
|
130
|
-
dry-configurable (~> 1.0, >= 1.0.1)
|
|
131
|
-
dry-core (~> 1.0, < 2)
|
|
132
|
-
dry-initializer (~> 3.0)
|
|
133
|
-
dry-logic (>= 1.4, < 2)
|
|
134
|
-
dry-types (>= 1.7, < 2)
|
|
135
|
-
zeitwerk (~> 2.6)
|
|
136
|
-
dry-types (1.7.2)
|
|
137
|
-
bigdecimal (~> 3.0)
|
|
138
|
-
concurrent-ruby (~> 1.0)
|
|
139
|
-
dry-core (~> 1.0)
|
|
140
|
-
dry-inflector (~> 1.0)
|
|
141
|
-
dry-logic (~> 1.4)
|
|
142
|
-
zeitwerk (~> 2.6)
|
|
143
|
-
erubi (1.13.0)
|
|
144
|
-
flay (2.13.3)
|
|
145
|
-
erubi (~> 1.10)
|
|
146
|
-
path_expander (~> 1.0)
|
|
147
|
-
ruby_parser (~> 3.0)
|
|
148
|
-
sexp_processor (~> 4.0)
|
|
149
|
-
flog (4.8.0)
|
|
150
|
-
path_expander (~> 1.0)
|
|
151
|
-
ruby_parser (~> 3.1, > 3.1.0)
|
|
152
|
-
sexp_processor (~> 4.8)
|
|
153
|
-
globalid (1.2.1)
|
|
154
|
-
activesupport (>= 6.1)
|
|
155
|
-
i18n (1.14.5)
|
|
156
|
-
concurrent-ruby (~> 1.0)
|
|
157
|
-
ice_nine (0.11.2)
|
|
158
|
-
io-console (0.8.0)
|
|
159
|
-
irb (1.14.2)
|
|
160
|
-
rdoc (>= 4.0.0)
|
|
161
|
-
reline (>= 0.4.2)
|
|
162
|
-
json (2.9.0)
|
|
163
|
-
language_server-protocol (3.17.0.3)
|
|
164
|
-
launchy (3.0.1)
|
|
165
|
-
addressable (~> 2.8)
|
|
166
|
-
childprocess (~> 5.0)
|
|
167
|
-
logger (1.6.0)
|
|
168
|
-
loofah (2.23.1)
|
|
169
|
-
crass (~> 1.0.2)
|
|
170
|
-
nokogiri (>= 1.12.0)
|
|
171
|
-
mail (2.8.1)
|
|
172
|
-
mini_mime (>= 0.1.1)
|
|
173
|
-
net-imap
|
|
174
|
-
net-pop
|
|
175
|
-
net-smtp
|
|
176
|
-
marcel (1.0.4)
|
|
177
|
-
mini_mime (1.1.5)
|
|
178
|
-
minitest (5.25.0)
|
|
179
|
-
mutex_m (0.2.0)
|
|
180
|
-
net-imap (0.5.1)
|
|
181
|
-
date
|
|
182
|
-
net-protocol
|
|
183
|
-
net-pop (0.1.2)
|
|
184
|
-
net-protocol
|
|
185
|
-
net-protocol (0.2.2)
|
|
186
|
-
timeout
|
|
187
|
-
net-smtp (0.5.0)
|
|
188
|
-
net-protocol
|
|
189
|
-
nio4r (2.7.4)
|
|
190
|
-
nokogiri (1.17.2-arm64-darwin)
|
|
191
|
-
racc (~> 1.4)
|
|
192
|
-
parallel (1.26.3)
|
|
193
|
-
parser (3.3.4.2)
|
|
194
|
-
ast (~> 2.4.1)
|
|
195
|
-
racc
|
|
196
|
-
path_expander (1.1.2)
|
|
197
|
-
psych (5.2.1)
|
|
198
|
-
date
|
|
199
|
-
stringio
|
|
200
|
-
public_suffix (6.0.1)
|
|
201
|
-
racc (1.8.1)
|
|
202
|
-
rack (3.1.8)
|
|
203
|
-
rack-session (2.0.0)
|
|
204
|
-
rack (>= 3.0.0)
|
|
205
|
-
rack-test (2.1.0)
|
|
206
|
-
rack (>= 1.3)
|
|
207
|
-
rackup (2.2.1)
|
|
208
|
-
rack (>= 3)
|
|
209
|
-
rails (7.1.5.1)
|
|
210
|
-
actioncable (= 7.1.5.1)
|
|
211
|
-
actionmailbox (= 7.1.5.1)
|
|
212
|
-
actionmailer (= 7.1.5.1)
|
|
213
|
-
actionpack (= 7.1.5.1)
|
|
214
|
-
actiontext (= 7.1.5.1)
|
|
215
|
-
actionview (= 7.1.5.1)
|
|
216
|
-
activejob (= 7.1.5.1)
|
|
217
|
-
activemodel (= 7.1.5.1)
|
|
218
|
-
activerecord (= 7.1.5.1)
|
|
219
|
-
activestorage (= 7.1.5.1)
|
|
220
|
-
activesupport (= 7.1.5.1)
|
|
221
|
-
bundler (>= 1.15.0)
|
|
222
|
-
railties (= 7.1.5.1)
|
|
223
|
-
rails-dom-testing (2.2.0)
|
|
224
|
-
activesupport (>= 5.0.0)
|
|
225
|
-
minitest
|
|
226
|
-
nokogiri (>= 1.6)
|
|
227
|
-
rails-html-sanitizer (1.6.2)
|
|
228
|
-
loofah (~> 2.21)
|
|
229
|
-
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
230
|
-
railties (7.1.5.1)
|
|
231
|
-
actionpack (= 7.1.5.1)
|
|
232
|
-
activesupport (= 7.1.5.1)
|
|
233
|
-
irb
|
|
234
|
-
rackup (>= 1.0.0)
|
|
235
|
-
rake (>= 12.2)
|
|
236
|
-
thor (~> 1.0, >= 1.2.2)
|
|
237
|
-
zeitwerk (~> 2.6)
|
|
238
|
-
rainbow (3.1.1)
|
|
239
|
-
rake (13.2.1)
|
|
240
|
-
rdoc (6.9.0)
|
|
241
|
-
psych (>= 4.0.0)
|
|
242
|
-
reek (6.3.0)
|
|
243
|
-
dry-schema (~> 1.13.0)
|
|
244
|
-
parser (~> 3.3.0)
|
|
245
|
-
rainbow (>= 2.0, < 4.0)
|
|
246
|
-
rexml (~> 3.1)
|
|
247
|
-
regexp_parser (2.9.3)
|
|
248
|
-
reline (0.5.12)
|
|
249
|
-
io-console (~> 0.5)
|
|
250
|
-
rexml (3.3.5)
|
|
251
|
-
strscan
|
|
252
|
-
rspec (3.13.0)
|
|
253
|
-
rspec-core (~> 3.13.0)
|
|
254
|
-
rspec-expectations (~> 3.13.0)
|
|
255
|
-
rspec-mocks (~> 3.13.0)
|
|
256
|
-
rspec-core (3.13.0)
|
|
257
|
-
rspec-support (~> 3.13.0)
|
|
258
|
-
rspec-expectations (3.13.1)
|
|
259
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
260
|
-
rspec-support (~> 3.13.0)
|
|
261
|
-
rspec-mocks (3.13.1)
|
|
262
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
263
|
-
rspec-support (~> 3.13.0)
|
|
264
|
-
rspec-support (3.13.1)
|
|
265
|
-
rubocop (1.69.2)
|
|
266
|
-
json (~> 2.3)
|
|
267
|
-
language_server-protocol (>= 3.17.0)
|
|
268
|
-
parallel (~> 1.10)
|
|
269
|
-
parser (>= 3.3.0.2)
|
|
270
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
271
|
-
regexp_parser (>= 2.9.3, < 3.0)
|
|
272
|
-
rubocop-ast (>= 1.36.2, < 2.0)
|
|
273
|
-
ruby-progressbar (~> 1.7)
|
|
274
|
-
unicode-display_width (>= 2.4.0, < 4.0)
|
|
275
|
-
rubocop-ast (1.37.0)
|
|
276
|
-
parser (>= 3.3.1.0)
|
|
277
|
-
rubocop-performance (1.23.0)
|
|
278
|
-
rubocop (>= 1.48.1, < 2.0)
|
|
279
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
280
|
-
rubocop-rake (0.6.0)
|
|
281
|
-
rubocop (~> 1.0)
|
|
282
|
-
rubocop-rspec (3.3.0)
|
|
283
|
-
rubocop (~> 1.61)
|
|
284
|
-
ruby-progressbar (1.13.0)
|
|
285
|
-
ruby_parser (3.21.1)
|
|
286
|
-
racc (~> 1.5)
|
|
287
|
-
sexp_processor (~> 4.16)
|
|
288
|
-
rubycritic (4.9.0)
|
|
289
|
-
flay (~> 2.13)
|
|
290
|
-
flog (~> 4.7)
|
|
291
|
-
launchy (>= 2.5.2)
|
|
292
|
-
parser (>= 3.2.2.1)
|
|
293
|
-
rainbow (~> 3.1.1)
|
|
294
|
-
reek (~> 6.0, < 7.0)
|
|
295
|
-
rexml
|
|
296
|
-
ruby_parser (~> 3.20)
|
|
297
|
-
simplecov (>= 0.22.0)
|
|
298
|
-
tty-which (~> 0.5.0)
|
|
299
|
-
virtus (~> 2.0)
|
|
300
|
-
securerandom (0.4.0)
|
|
301
|
-
sexp_processor (4.17.2)
|
|
302
|
-
simplecov (0.22.0)
|
|
303
|
-
docile (~> 1.1)
|
|
304
|
-
simplecov-html (~> 0.11)
|
|
305
|
-
simplecov_json_formatter (~> 0.1)
|
|
306
|
-
simplecov-html (0.12.3)
|
|
307
|
-
simplecov_json_formatter (0.1.4)
|
|
308
|
-
stringio (3.1.2)
|
|
309
|
-
strscan (3.1.0)
|
|
310
|
-
thor (1.3.1)
|
|
311
|
-
thread_safe (0.3.6)
|
|
312
|
-
timeout (0.4.2)
|
|
313
|
-
tty-which (0.5.0)
|
|
314
|
-
tzinfo (2.0.6)
|
|
315
|
-
concurrent-ruby (~> 1.0)
|
|
316
|
-
unicode-display_width (3.1.2)
|
|
317
|
-
unicode-emoji (~> 4.0, >= 4.0.4)
|
|
318
|
-
unicode-emoji (4.0.4)
|
|
319
|
-
virtus (2.0.0)
|
|
320
|
-
axiom-types (~> 0.1)
|
|
321
|
-
coercible (~> 1.0)
|
|
322
|
-
descendants_tracker (~> 0.0, >= 0.0.3)
|
|
323
|
-
websocket-driver (0.7.6)
|
|
324
|
-
websocket-extensions (>= 0.1.0)
|
|
325
|
-
websocket-extensions (0.1.5)
|
|
326
|
-
zeitwerk (2.7.1)
|
|
327
|
-
|
|
328
|
-
PLATFORMS
|
|
329
|
-
arm64-darwin-23
|
|
330
|
-
arm64-darwin-24
|
|
331
|
-
|
|
332
|
-
DEPENDENCIES
|
|
333
|
-
appraisal (~> 2.5)
|
|
334
|
-
rails (= 7.1.5.1)
|
|
335
|
-
rake (~> 13.2)
|
|
336
|
-
rspec (~> 3.13)
|
|
337
|
-
rubocop (~> 1.69)
|
|
338
|
-
rubocop-performance (~> 1.23)
|
|
339
|
-
rubocop-rake (~> 0.6)
|
|
340
|
-
rubocop-rspec (~> 3.3)
|
|
341
|
-
rubycritic (~> 4.9)
|
|
342
|
-
simplecov (~> 0.22)
|
|
343
|
-
tdc!
|
|
344
|
-
|
|
345
|
-
BUNDLED WITH
|
|
346
|
-
2.4.8
|