tdc 1.1 → 1.2

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: e0bfe86026d50b9a8bfe59cc97182ac8ac07186fe322731a20b758ea1ffd26df
4
- data.tar.gz: 189f7e82c4d40c48c82659b9b2955af31014355b376dde65824b6a48ee2ee65b
3
+ metadata.gz: 50ad351391fe24e0f4edac9aab8c3c168bd1663fc573453106f0dd705be52f6f
4
+ data.tar.gz: 4818a7bae4a7a81bd03e76c24af0f6fb70ab43cd38a9a4e3ccb6aa12d9b338a3
5
5
  SHA512:
6
- metadata.gz: 8ab18b6fa212b84a693a110299c790a88664a2aeaa20b6ae88a6653f5460edabd52998ce73567a3404fdfd30a1adc72f0083674b052da9718e451f8ba445ad8d
7
- data.tar.gz: 90721b81a6110ad3053487ba6fb50fb972a124ae33a2210a27c33e73b193b913b3d651dbe9775c0370f26fc78cb15a217a3975618151ae7747959867481100d9
6
+ metadata.gz: 5ed0d723f97ce97cb41c1f0158753212352167d1f0dae4c1a231fb588d68035dc3bb1a4d4f3d7a3d9c24f87bb60be6dedb22180672cca64c4be21d98396c1d9c
7
+ data.tar.gz: bf8dbccc23d5f42fb6ba6818e938b62309aad5a9c3683d55f7aeb831d32fb3ca2d928100336b737aba373e506b572d038da65906805c41394fa0ed980f07c4f2
data/.gitignore CHANGED
@@ -7,6 +7,8 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
 
10
+ Gemfile.lock
11
+ gemfiles/*.gemfile.lock
12
+
10
13
  # rspec failure tracking
11
14
  .rspec_status
12
- /Gemfile.lock
data/Appraisals CHANGED
@@ -1,11 +1,7 @@
1
- appraise "rails-7" do
2
- gem "rails", "7.0.8.4"
3
- end
4
-
5
- appraise "rails-7-1" do
6
- gem "rails", "7.1.5.1"
7
- end
8
-
9
1
  appraise "rails-7-2" do
10
2
  gem "rails", "7.2.2.1"
11
3
  end
4
+
5
+ appraise "rails-8-0" do
6
+ gem "rails", "8.0.3"
7
+ end
data/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.2] - 2025-10-07
10
+
11
+ - Support Rails 8.0.x
12
+
13
+ #### Breaking Changes
14
+
15
+ - Drop support for Ruby 3.1
16
+ - Drop support for Rails 7.0 and 7.1
17
+
9
18
  ## [1.1] - 2024-12-14
10
19
 
11
20
  - Support Rails 7.2.x
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "7.0.8.4"
5
+ gem "rails", "8.0.3"
6
6
 
7
7
  gemspec path: "../"
data/lib/tdc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Tdc
2
- VERSION = "1.1"
2
+ VERSION = "1.2"
3
3
  end
data/tdc.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.homepage = "https://github.com/nulogy/tdc"
11
11
  spec.license = "MIT"
12
12
 
13
- spec.required_ruby_version = Gem::Requirement.new(">= 3.1")
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 3.2")
14
14
 
15
15
  spec.metadata = {
16
16
  "homepage_uri" => "https://github.com/nulogy/tdc",
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
28
28
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
29
  spec.require_paths = ["lib"]
30
30
 
31
- spec.add_dependency "activesupport", ">= 7.0", "< 8.0"
31
+ spec.add_dependency "activesupport", ">= 7.2", "< 8.1"
32
32
  spec.add_dependency "zeitwerk", ">= 2.7"
33
33
 
34
34
  spec.add_development_dependency "appraisal", "~> 2.5"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tdc
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.1'
4
+ version: '1.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alistair McKinnell
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
11
+ date: 2025-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '7.0'
19
+ version: '7.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '8.0'
22
+ version: '8.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '7.0'
29
+ version: '7.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '8.0'
32
+ version: '8.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: zeitwerk
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -190,12 +190,8 @@ files:
190
190
  - bin/console
191
191
  - bin/setup
192
192
  - gemfiles/.bundle/config
193
- - gemfiles/rails_7.gemfile
194
- - gemfiles/rails_7.gemfile.lock
195
- - gemfiles/rails_7_1.gemfile
196
- - gemfiles/rails_7_1.gemfile.lock
197
193
  - gemfiles/rails_7_2.gemfile
198
- - gemfiles/rails_7_2.gemfile.lock
194
+ - gemfiles/rails_8_0.gemfile
199
195
  - images/Tdc.png
200
196
  - lib/tdc.rb
201
197
  - lib/tdc/data_definition.rb
@@ -242,14 +238,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
242
238
  requirements:
243
239
  - - ">="
244
240
  - !ruby/object:Gem::Version
245
- version: '3.1'
241
+ version: '3.2'
246
242
  required_rubygems_version: !ruby/object:Gem::Requirement
247
243
  requirements:
248
244
  - - ">="
249
245
  - !ruby/object:Gem::Version
250
246
  version: '0'
251
247
  requirements: []
252
- rubygems_version: 3.5.23
248
+ rubygems_version: 3.5.22
253
249
  signing_key:
254
250
  specification_version: 4
255
251
  summary: A simple framework for creating a Test Data Catalog
@@ -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
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "7.1.5.1"
6
-
7
- gemspec path: "../"
@@ -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
@@ -1,353 +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.2.2.1)
12
- actionpack (= 7.2.2.1)
13
- activesupport (= 7.2.2.1)
14
- nio4r (~> 2.0)
15
- websocket-driver (>= 0.6.1)
16
- zeitwerk (~> 2.6)
17
- actionmailbox (7.2.2.1)
18
- actionpack (= 7.2.2.1)
19
- activejob (= 7.2.2.1)
20
- activerecord (= 7.2.2.1)
21
- activestorage (= 7.2.2.1)
22
- activesupport (= 7.2.2.1)
23
- mail (>= 2.8.0)
24
- actionmailer (7.2.2.1)
25
- actionpack (= 7.2.2.1)
26
- actionview (= 7.2.2.1)
27
- activejob (= 7.2.2.1)
28
- activesupport (= 7.2.2.1)
29
- mail (>= 2.8.0)
30
- rails-dom-testing (~> 2.2)
31
- actionpack (7.2.2.1)
32
- actionview (= 7.2.2.1)
33
- activesupport (= 7.2.2.1)
34
- nokogiri (>= 1.8.5)
35
- racc
36
- rack (>= 2.2.4, < 3.2)
37
- rack-session (>= 1.0.1)
38
- rack-test (>= 0.6.3)
39
- rails-dom-testing (~> 2.2)
40
- rails-html-sanitizer (~> 1.6)
41
- useragent (~> 0.16)
42
- actiontext (7.2.2.1)
43
- actionpack (= 7.2.2.1)
44
- activerecord (= 7.2.2.1)
45
- activestorage (= 7.2.2.1)
46
- activesupport (= 7.2.2.1)
47
- globalid (>= 0.6.0)
48
- nokogiri (>= 1.8.5)
49
- actionview (7.2.2.1)
50
- activesupport (= 7.2.2.1)
51
- builder (~> 3.1)
52
- erubi (~> 1.11)
53
- rails-dom-testing (~> 2.2)
54
- rails-html-sanitizer (~> 1.6)
55
- activejob (7.2.2.1)
56
- activesupport (= 7.2.2.1)
57
- globalid (>= 0.3.6)
58
- activemodel (7.2.2.1)
59
- activesupport (= 7.2.2.1)
60
- activerecord (7.2.2.1)
61
- activemodel (= 7.2.2.1)
62
- activesupport (= 7.2.2.1)
63
- timeout (>= 0.4.0)
64
- activestorage (7.2.2.1)
65
- actionpack (= 7.2.2.1)
66
- activejob (= 7.2.2.1)
67
- activerecord (= 7.2.2.1)
68
- activesupport (= 7.2.2.1)
69
- marcel (~> 1.0)
70
- activesupport (7.2.2.1)
71
- base64
72
- benchmark (>= 0.3)
73
- bigdecimal
74
- concurrent-ruby (~> 1.0, >= 1.3.1)
75
- connection_pool (>= 2.2.5)
76
- drb
77
- i18n (>= 1.6, < 2)
78
- logger (>= 1.4.2)
79
- minitest (>= 5.1)
80
- securerandom (>= 0.3)
81
- tzinfo (~> 2.0, >= 2.0.5)
82
- addressable (2.8.7)
83
- public_suffix (>= 2.0.2, < 7.0)
84
- appraisal (2.5.0)
85
- bundler
86
- rake
87
- thor (>= 0.14.0)
88
- ast (2.4.2)
89
- axiom-types (0.1.1)
90
- descendants_tracker (~> 0.0.4)
91
- ice_nine (~> 0.11.0)
92
- thread_safe (~> 0.3, >= 0.3.1)
93
- base64 (0.2.0)
94
- benchmark (0.4.0)
95
- bigdecimal (3.1.8)
96
- builder (3.3.0)
97
- childprocess (5.1.0)
98
- logger (~> 1.5)
99
- coercible (1.0.0)
100
- descendants_tracker (~> 0.0.1)
101
- concurrent-ruby (1.3.4)
102
- connection_pool (2.4.1)
103
- crass (1.0.6)
104
- date (3.4.1)
105
- descendants_tracker (0.0.4)
106
- thread_safe (~> 0.3, >= 0.3.1)
107
- diff-lcs (1.5.1)
108
- docile (1.4.1)
109
- drb (2.2.1)
110
- dry-configurable (1.2.0)
111
- dry-core (~> 1.0, < 2)
112
- zeitwerk (~> 2.6)
113
- dry-core (1.0.2)
114
- concurrent-ruby (~> 1.0)
115
- logger
116
- zeitwerk (~> 2.6)
117
- dry-inflector (1.1.0)
118
- dry-initializer (3.1.1)
119
- dry-logic (1.5.0)
120
- concurrent-ruby (~> 1.0)
121
- dry-core (~> 1.0, < 2)
122
- zeitwerk (~> 2.6)
123
- dry-schema (1.13.4)
124
- concurrent-ruby (~> 1.0)
125
- dry-configurable (~> 1.0, >= 1.0.1)
126
- dry-core (~> 1.0, < 2)
127
- dry-initializer (~> 3.0)
128
- dry-logic (>= 1.4, < 2)
129
- dry-types (>= 1.7, < 2)
130
- zeitwerk (~> 2.6)
131
- dry-types (1.7.2)
132
- bigdecimal (~> 3.0)
133
- concurrent-ruby (~> 1.0)
134
- dry-core (~> 1.0)
135
- dry-inflector (~> 1.0)
136
- dry-logic (~> 1.4)
137
- zeitwerk (~> 2.6)
138
- erubi (1.13.0)
139
- flay (2.13.3)
140
- erubi (~> 1.10)
141
- path_expander (~> 1.0)
142
- ruby_parser (~> 3.0)
143
- sexp_processor (~> 4.0)
144
- flog (4.8.0)
145
- path_expander (~> 1.0)
146
- ruby_parser (~> 3.1, > 3.1.0)
147
- sexp_processor (~> 4.8)
148
- globalid (1.2.1)
149
- activesupport (>= 6.1)
150
- i18n (1.14.6)
151
- concurrent-ruby (~> 1.0)
152
- ice_nine (0.11.2)
153
- io-console (0.8.0)
154
- irb (1.14.2)
155
- rdoc (>= 4.0.0)
156
- reline (>= 0.4.2)
157
- json (2.9.0)
158
- language_server-protocol (3.17.0.3)
159
- launchy (3.0.1)
160
- addressable (~> 2.8)
161
- childprocess (~> 5.0)
162
- logger (1.6.3)
163
- loofah (2.23.1)
164
- crass (~> 1.0.2)
165
- nokogiri (>= 1.12.0)
166
- mail (2.8.1)
167
- mini_mime (>= 0.1.1)
168
- net-imap
169
- net-pop
170
- net-smtp
171
- marcel (1.0.4)
172
- mini_mime (1.1.5)
173
- minitest (5.25.4)
174
- net-imap (0.5.1)
175
- date
176
- net-protocol
177
- net-pop (0.1.2)
178
- net-protocol
179
- net-protocol (0.2.2)
180
- timeout
181
- net-smtp (0.5.0)
182
- net-protocol
183
- nio4r (2.7.4)
184
- nokogiri (1.17.2-aarch64-linux)
185
- racc (~> 1.4)
186
- nokogiri (1.17.2-arm-linux)
187
- racc (~> 1.4)
188
- nokogiri (1.17.2-arm64-darwin)
189
- racc (~> 1.4)
190
- nokogiri (1.17.2-x86-linux)
191
- racc (~> 1.4)
192
- nokogiri (1.17.2-x86_64-darwin)
193
- racc (~> 1.4)
194
- nokogiri (1.17.2-x86_64-linux)
195
- racc (~> 1.4)
196
- parallel (1.26.3)
197
- parser (3.3.6.0)
198
- ast (~> 2.4.1)
199
- racc
200
- path_expander (1.1.3)
201
- psych (5.2.1)
202
- date
203
- stringio
204
- public_suffix (6.0.1)
205
- racc (1.8.1)
206
- rack (3.1.8)
207
- rack-session (2.0.0)
208
- rack (>= 3.0.0)
209
- rack-test (2.1.0)
210
- rack (>= 1.3)
211
- rackup (2.2.1)
212
- rack (>= 3)
213
- rails (7.2.2.1)
214
- actioncable (= 7.2.2.1)
215
- actionmailbox (= 7.2.2.1)
216
- actionmailer (= 7.2.2.1)
217
- actionpack (= 7.2.2.1)
218
- actiontext (= 7.2.2.1)
219
- actionview (= 7.2.2.1)
220
- activejob (= 7.2.2.1)
221
- activemodel (= 7.2.2.1)
222
- activerecord (= 7.2.2.1)
223
- activestorage (= 7.2.2.1)
224
- activesupport (= 7.2.2.1)
225
- bundler (>= 1.15.0)
226
- railties (= 7.2.2.1)
227
- rails-dom-testing (2.2.0)
228
- activesupport (>= 5.0.0)
229
- minitest
230
- nokogiri (>= 1.6)
231
- rails-html-sanitizer (1.6.2)
232
- loofah (~> 2.21)
233
- 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)
234
- railties (7.2.2.1)
235
- actionpack (= 7.2.2.1)
236
- activesupport (= 7.2.2.1)
237
- irb (~> 1.13)
238
- rackup (>= 1.0.0)
239
- rake (>= 12.2)
240
- thor (~> 1.0, >= 1.2.2)
241
- zeitwerk (~> 2.6)
242
- rainbow (3.1.1)
243
- rake (13.2.1)
244
- rdoc (6.9.0)
245
- psych (>= 4.0.0)
246
- reek (6.3.0)
247
- dry-schema (~> 1.13.0)
248
- parser (~> 3.3.0)
249
- rainbow (>= 2.0, < 4.0)
250
- rexml (~> 3.1)
251
- regexp_parser (2.9.3)
252
- reline (0.5.12)
253
- io-console (~> 0.5)
254
- rexml (3.4.0)
255
- rspec (3.13.0)
256
- rspec-core (~> 3.13.0)
257
- rspec-expectations (~> 3.13.0)
258
- rspec-mocks (~> 3.13.0)
259
- rspec-core (3.13.2)
260
- rspec-support (~> 3.13.0)
261
- rspec-expectations (3.13.3)
262
- diff-lcs (>= 1.2.0, < 2.0)
263
- rspec-support (~> 3.13.0)
264
- rspec-mocks (3.13.2)
265
- diff-lcs (>= 1.2.0, < 2.0)
266
- rspec-support (~> 3.13.0)
267
- rspec-support (3.13.2)
268
- rubocop (1.69.2)
269
- json (~> 2.3)
270
- language_server-protocol (>= 3.17.0)
271
- parallel (~> 1.10)
272
- parser (>= 3.3.0.2)
273
- rainbow (>= 2.2.2, < 4.0)
274
- regexp_parser (>= 2.9.3, < 3.0)
275
- rubocop-ast (>= 1.36.2, < 2.0)
276
- ruby-progressbar (~> 1.7)
277
- unicode-display_width (>= 2.4.0, < 4.0)
278
- rubocop-ast (1.37.0)
279
- parser (>= 3.3.1.0)
280
- rubocop-performance (1.23.0)
281
- rubocop (>= 1.48.1, < 2.0)
282
- rubocop-ast (>= 1.31.1, < 2.0)
283
- rubocop-rake (0.6.0)
284
- rubocop (~> 1.0)
285
- rubocop-rspec (3.3.0)
286
- rubocop (~> 1.61)
287
- ruby-progressbar (1.13.0)
288
- ruby_parser (3.21.1)
289
- racc (~> 1.5)
290
- sexp_processor (~> 4.16)
291
- rubycritic (4.9.0)
292
- flay (~> 2.13)
293
- flog (~> 4.7)
294
- launchy (>= 2.5.2)
295
- parser (>= 3.2.2.1)
296
- rainbow (~> 3.1.1)
297
- reek (~> 6.0, < 7.0)
298
- rexml
299
- ruby_parser (~> 3.20)
300
- simplecov (>= 0.22.0)
301
- tty-which (~> 0.5.0)
302
- virtus (~> 2.0)
303
- securerandom (0.4.0)
304
- sexp_processor (4.17.3)
305
- simplecov (0.22.0)
306
- docile (~> 1.1)
307
- simplecov-html (~> 0.11)
308
- simplecov_json_formatter (~> 0.1)
309
- simplecov-html (0.13.1)
310
- simplecov_json_formatter (0.1.4)
311
- stringio (3.1.2)
312
- thor (1.3.2)
313
- thread_safe (0.3.6)
314
- timeout (0.4.2)
315
- tty-which (0.5.0)
316
- tzinfo (2.0.6)
317
- concurrent-ruby (~> 1.0)
318
- unicode-display_width (3.1.2)
319
- unicode-emoji (~> 4.0, >= 4.0.4)
320
- unicode-emoji (4.0.4)
321
- useragent (0.16.11)
322
- virtus (2.0.0)
323
- axiom-types (~> 0.1)
324
- coercible (~> 1.0)
325
- descendants_tracker (~> 0.0, >= 0.0.3)
326
- websocket-driver (0.7.6)
327
- websocket-extensions (>= 0.1.0)
328
- websocket-extensions (0.1.5)
329
- zeitwerk (2.7.1)
330
-
331
- PLATFORMS
332
- aarch64-linux
333
- arm-linux
334
- arm64-darwin
335
- x86-linux
336
- x86_64-darwin
337
- x86_64-linux
338
-
339
- DEPENDENCIES
340
- appraisal (~> 2.5)
341
- rails (= 7.2.2.1)
342
- rake (~> 13.2)
343
- rspec (~> 3.13)
344
- rubocop (~> 1.69)
345
- rubocop-performance (~> 1.23)
346
- rubocop-rake (~> 0.6)
347
- rubocop-rspec (~> 3.3)
348
- rubycritic (~> 4.9)
349
- simplecov (~> 0.22)
350
- tdc!
351
-
352
- BUNDLED WITH
353
- 2.5.23