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