tdc 0.6.2 → 1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +7 -1
- data/.ruby-version +1 -1
- data/Appraisals +8 -4
- data/CHANGELOG.md +14 -0
- data/gemfiles/rails_7.gemfile +1 -1
- data/gemfiles/rails_7.gemfile.lock +197 -158
- data/gemfiles/{rails_6_1.gemfile → rails_7_1.gemfile} +1 -1
- data/gemfiles/rails_7_1.gemfile.lock +346 -0
- data/gemfiles/rails_7_2.gemfile +7 -0
- data/gemfiles/rails_7_2.gemfile.lock +353 -0
- data/lib/tdc/generators/catalog_entries.rb +1 -1
- data/lib/tdc/version.rb +1 -1
- data/lib/tdc.rb +5 -43
- data/tdc.gemspec +10 -10
- metadata +40 -25
- data/gemfiles/rails_6_1.gemfile.lock +0 -274
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0bfe86026d50b9a8bfe59cc97182ac8ac07186fe322731a20b758ea1ffd26df
|
4
|
+
data.tar.gz: 189f7e82c4d40c48c82659b9b2955af31014355b376dde65824b6a48ee2ee65b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ab18b6fa212b84a693a110299c790a88664a2aeaa20b6ae88a6653f5460edabd52998ce73567a3404fdfd30a1adc72f0083674b052da9718e451f8ba445ad8d
|
7
|
+
data.tar.gz: 90721b81a6110ad3053487ba6fb50fb972a124ae33a2210a27c33e73b193b913b3d651dbe9775c0370f26fc78cb15a217a3975618151ae7747959867481100d9
|
data/.rubocop.yml
CHANGED
@@ -1,14 +1,18 @@
|
|
1
1
|
require:
|
2
|
+
- rubocop-performance
|
2
3
|
- rubocop-rake
|
3
4
|
- rubocop-rspec
|
4
5
|
|
5
6
|
AllCops:
|
6
7
|
NewCops: enable
|
7
|
-
TargetRubyVersion: 3.
|
8
|
+
TargetRubyVersion: 3.1
|
8
9
|
|
9
10
|
Exclude:
|
10
11
|
- 'bin/**/*'
|
11
12
|
|
13
|
+
Gemspec/DevelopmentDependencies:
|
14
|
+
EnforcedStyle: gemspec
|
15
|
+
|
12
16
|
Layout/LineLength:
|
13
17
|
Max: 120
|
14
18
|
|
@@ -82,6 +86,8 @@ Style/FrozenStringLiteralComment:
|
|
82
86
|
|
83
87
|
# We like to use the hash rocket in rake files.
|
84
88
|
Style/HashSyntax:
|
89
|
+
EnforcedShorthandSyntax: never
|
90
|
+
EnforcedStyle: ruby19
|
85
91
|
Exclude:
|
86
92
|
- 'Rakefile'
|
87
93
|
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.6
|
data/Appraisals
CHANGED
@@ -1,7 +1,11 @@
|
|
1
|
-
appraise "rails-
|
2
|
-
gem "rails", "
|
1
|
+
appraise "rails-7" do
|
2
|
+
gem "rails", "7.0.8.4"
|
3
3
|
end
|
4
4
|
|
5
|
-
appraise "rails-7" do
|
6
|
-
gem "rails", "7.
|
5
|
+
appraise "rails-7-1" do
|
6
|
+
gem "rails", "7.1.5.1"
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise "rails-7-2" do
|
10
|
+
gem "rails", "7.2.2.1"
|
7
11
|
end
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.1] - 2024-12-14
|
10
|
+
|
11
|
+
- Support Rails 7.2.x
|
12
|
+
|
13
|
+
## [1.0] - 2024-08-16
|
14
|
+
|
15
|
+
- Support Rails 7.0.x and 7.1.x
|
16
|
+
- Support Ruby 3.1
|
17
|
+
|
18
|
+
#### Breaking Changes
|
19
|
+
|
20
|
+
- Drop support for Ruby 3.0
|
21
|
+
- Drop support for Rails 6.1
|
22
|
+
|
9
23
|
## [0.6.2] - 2024-03-05
|
10
24
|
|
11
25
|
- Better error message when a tag cannot be resolved
|
data/gemfiles/rails_7.gemfile
CHANGED
@@ -1,80 +1,81 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
tdc (
|
5
|
-
activesupport (>=
|
4
|
+
tdc (1.1)
|
5
|
+
activesupport (>= 7.0, < 8.0)
|
6
|
+
zeitwerk (>= 2.7)
|
6
7
|
|
7
8
|
GEM
|
8
9
|
remote: https://rubygems.org/
|
9
10
|
specs:
|
10
|
-
actioncable (7.0.4
|
11
|
-
actionpack (= 7.0.4
|
12
|
-
activesupport (= 7.0.4
|
11
|
+
actioncable (7.0.8.4)
|
12
|
+
actionpack (= 7.0.8.4)
|
13
|
+
activesupport (= 7.0.8.4)
|
13
14
|
nio4r (~> 2.0)
|
14
15
|
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailbox (7.0.4
|
16
|
-
actionpack (= 7.0.4
|
17
|
-
activejob (= 7.0.4
|
18
|
-
activerecord (= 7.0.4
|
19
|
-
activestorage (= 7.0.4
|
20
|
-
activesupport (= 7.0.4
|
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)
|
21
22
|
mail (>= 2.7.1)
|
22
23
|
net-imap
|
23
24
|
net-pop
|
24
25
|
net-smtp
|
25
|
-
actionmailer (7.0.4
|
26
|
-
actionpack (= 7.0.4
|
27
|
-
actionview (= 7.0.4
|
28
|
-
activejob (= 7.0.4
|
29
|
-
activesupport (= 7.0.4
|
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)
|
30
31
|
mail (~> 2.5, >= 2.5.4)
|
31
32
|
net-imap
|
32
33
|
net-pop
|
33
34
|
net-smtp
|
34
35
|
rails-dom-testing (~> 2.0)
|
35
|
-
actionpack (7.0.4
|
36
|
-
actionview (= 7.0.4
|
37
|
-
activesupport (= 7.0.4
|
38
|
-
rack (~> 2.0, >= 2.2.
|
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)
|
39
40
|
rack-test (>= 0.6.3)
|
40
41
|
rails-dom-testing (~> 2.0)
|
41
42
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
42
|
-
actiontext (7.0.4
|
43
|
-
actionpack (= 7.0.4
|
44
|
-
activerecord (= 7.0.4
|
45
|
-
activestorage (= 7.0.4
|
46
|
-
activesupport (= 7.0.4
|
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)
|
47
48
|
globalid (>= 0.6.0)
|
48
49
|
nokogiri (>= 1.8.5)
|
49
|
-
actionview (7.0.4
|
50
|
-
activesupport (= 7.0.4
|
50
|
+
actionview (7.0.8.4)
|
51
|
+
activesupport (= 7.0.8.4)
|
51
52
|
builder (~> 3.1)
|
52
53
|
erubi (~> 1.4)
|
53
54
|
rails-dom-testing (~> 2.0)
|
54
55
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
55
|
-
activejob (7.0.4
|
56
|
-
activesupport (= 7.0.4
|
56
|
+
activejob (7.0.8.4)
|
57
|
+
activesupport (= 7.0.8.4)
|
57
58
|
globalid (>= 0.3.6)
|
58
|
-
activemodel (7.0.4
|
59
|
-
activesupport (= 7.0.4
|
60
|
-
activerecord (7.0.4
|
61
|
-
activemodel (= 7.0.4
|
62
|
-
activesupport (= 7.0.4
|
63
|
-
activestorage (7.0.4
|
64
|
-
actionpack (= 7.0.4
|
65
|
-
activejob (= 7.0.4
|
66
|
-
activerecord (= 7.0.4
|
67
|
-
activesupport (= 7.0.4
|
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)
|
68
69
|
marcel (~> 1.0)
|
69
70
|
mini_mime (>= 1.1.0)
|
70
|
-
activesupport (7.0.4
|
71
|
+
activesupport (7.0.8.4)
|
71
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
72
73
|
i18n (>= 1.6, < 2)
|
73
74
|
minitest (>= 5.1)
|
74
75
|
tzinfo (~> 2.0)
|
75
|
-
addressable (2.8.
|
76
|
-
public_suffix (>= 2.0.2, <
|
77
|
-
appraisal (2.
|
76
|
+
addressable (2.8.7)
|
77
|
+
public_suffix (>= 2.0.2, < 7.0)
|
78
|
+
appraisal (2.5.0)
|
78
79
|
bundler
|
79
80
|
rake
|
80
81
|
thor (>= 0.14.0)
|
@@ -83,189 +84,227 @@ GEM
|
|
83
84
|
descendants_tracker (~> 0.0.4)
|
84
85
|
ice_nine (~> 0.11.0)
|
85
86
|
thread_safe (~> 0.3, >= 0.3.1)
|
86
|
-
|
87
|
+
bigdecimal (3.1.8)
|
88
|
+
builder (3.3.0)
|
89
|
+
childprocess (5.1.0)
|
90
|
+
logger (~> 1.5)
|
87
91
|
coercible (1.0.0)
|
88
92
|
descendants_tracker (~> 0.0.1)
|
89
|
-
concurrent-ruby (1.
|
93
|
+
concurrent-ruby (1.3.4)
|
90
94
|
crass (1.0.6)
|
91
|
-
date (3.3.
|
95
|
+
date (3.3.4)
|
92
96
|
descendants_tracker (0.0.4)
|
93
97
|
thread_safe (~> 0.3, >= 0.3.1)
|
94
|
-
diff-lcs (1.5.
|
95
|
-
docile (1.4.
|
96
|
-
|
97
|
-
|
98
|
-
|
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)
|
99
129
|
erubi (~> 1.10)
|
100
130
|
path_expander (~> 1.0)
|
101
131
|
ruby_parser (~> 3.0)
|
102
132
|
sexp_processor (~> 4.0)
|
103
|
-
flog (4.
|
133
|
+
flog (4.8.0)
|
104
134
|
path_expander (~> 1.0)
|
105
135
|
ruby_parser (~> 3.1, > 3.1.0)
|
106
136
|
sexp_processor (~> 4.8)
|
107
|
-
globalid (1.1
|
108
|
-
activesupport (>=
|
109
|
-
i18n (1.
|
137
|
+
globalid (1.2.1)
|
138
|
+
activesupport (>= 6.1)
|
139
|
+
i18n (1.14.5)
|
110
140
|
concurrent-ruby (~> 1.0)
|
111
141
|
ice_nine (0.11.2)
|
112
|
-
json (2.
|
113
|
-
|
114
|
-
launchy (
|
142
|
+
json (2.9.0)
|
143
|
+
language_server-protocol (3.17.0.3)
|
144
|
+
launchy (3.0.1)
|
115
145
|
addressable (~> 2.8)
|
116
|
-
|
146
|
+
childprocess (~> 5.0)
|
147
|
+
logger (1.6.0)
|
148
|
+
loofah (2.22.0)
|
117
149
|
crass (~> 1.0.2)
|
118
|
-
nokogiri (>= 1.
|
150
|
+
nokogiri (>= 1.12.0)
|
119
151
|
mail (2.8.1)
|
120
152
|
mini_mime (>= 0.1.1)
|
121
153
|
net-imap
|
122
154
|
net-pop
|
123
155
|
net-smtp
|
124
|
-
marcel (1.0.
|
125
|
-
method_source (1.
|
126
|
-
mini_mime (1.1.
|
127
|
-
minitest (5.
|
128
|
-
net-imap (0.
|
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)
|
129
161
|
date
|
130
162
|
net-protocol
|
131
163
|
net-pop (0.1.2)
|
132
164
|
net-protocol
|
133
|
-
net-protocol (0.2.
|
165
|
+
net-protocol (0.2.2)
|
134
166
|
timeout
|
135
|
-
net-smtp (0.
|
167
|
+
net-smtp (0.5.0)
|
136
168
|
net-protocol
|
137
|
-
nio4r (2.
|
138
|
-
nokogiri (1.
|
169
|
+
nio4r (2.7.3)
|
170
|
+
nokogiri (1.16.7-arm64-darwin)
|
139
171
|
racc (~> 1.4)
|
140
|
-
parallel (1.
|
141
|
-
parser (3.
|
172
|
+
parallel (1.26.3)
|
173
|
+
parser (3.3.4.2)
|
142
174
|
ast (~> 2.4.1)
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
rack
|
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)
|
148
181
|
rack (>= 1.3)
|
149
|
-
rails (7.0.4
|
150
|
-
actioncable (= 7.0.4
|
151
|
-
actionmailbox (= 7.0.4
|
152
|
-
actionmailer (= 7.0.4
|
153
|
-
actionpack (= 7.0.4
|
154
|
-
actiontext (= 7.0.4
|
155
|
-
actionview (= 7.0.4
|
156
|
-
activejob (= 7.0.4
|
157
|
-
activemodel (= 7.0.4
|
158
|
-
activerecord (= 7.0.4
|
159
|
-
activestorage (= 7.0.4
|
160
|
-
activesupport (= 7.0.4
|
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)
|
161
194
|
bundler (>= 1.15.0)
|
162
|
-
railties (= 7.0.4
|
163
|
-
rails-dom-testing (2.0
|
164
|
-
activesupport (>=
|
195
|
+
railties (= 7.0.8.4)
|
196
|
+
rails-dom-testing (2.2.0)
|
197
|
+
activesupport (>= 5.0.0)
|
198
|
+
minitest
|
165
199
|
nokogiri (>= 1.6)
|
166
|
-
rails-html-sanitizer (1.
|
167
|
-
loofah (~> 2.
|
168
|
-
|
169
|
-
|
170
|
-
|
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)
|
171
206
|
method_source
|
172
207
|
rake (>= 12.2)
|
173
208
|
thor (~> 1.0)
|
174
209
|
zeitwerk (~> 2.5)
|
175
210
|
rainbow (3.1.1)
|
176
|
-
rake (13.
|
177
|
-
reek (6.
|
178
|
-
|
179
|
-
parser (~> 3.
|
211
|
+
rake (13.2.1)
|
212
|
+
reek (6.3.0)
|
213
|
+
dry-schema (~> 1.13.0)
|
214
|
+
parser (~> 3.3.0)
|
180
215
|
rainbow (>= 2.0, < 4.0)
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
rspec-
|
187
|
-
|
188
|
-
rspec-
|
189
|
-
rspec-
|
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)
|
190
227
|
diff-lcs (>= 1.2.0, < 2.0)
|
191
|
-
rspec-support (~> 3.
|
192
|
-
rspec-mocks (3.
|
228
|
+
rspec-support (~> 3.13.0)
|
229
|
+
rspec-mocks (3.13.1)
|
193
230
|
diff-lcs (>= 1.2.0, < 2.0)
|
194
|
-
rspec-support (~> 3.
|
195
|
-
rspec-support (3.
|
196
|
-
rubocop (1.
|
231
|
+
rspec-support (~> 3.13.0)
|
232
|
+
rspec-support (3.13.1)
|
233
|
+
rubocop (1.69.2)
|
197
234
|
json (~> 2.3)
|
235
|
+
language_server-protocol (>= 3.17.0)
|
198
236
|
parallel (~> 1.10)
|
199
|
-
parser (>= 3.
|
237
|
+
parser (>= 3.3.0.2)
|
200
238
|
rainbow (>= 2.2.2, < 4.0)
|
201
|
-
regexp_parser (>=
|
202
|
-
|
203
|
-
rubocop-ast (>= 1.26.0, < 2.0)
|
239
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
240
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
204
241
|
ruby-progressbar (~> 1.7)
|
205
|
-
unicode-display_width (>= 2.4.0, <
|
206
|
-
rubocop-ast (1.
|
207
|
-
parser (>= 3.
|
208
|
-
rubocop-
|
209
|
-
rubocop (
|
210
|
-
|
211
|
-
rubocop (>= 1.7.0, < 2.0)
|
212
|
-
rubocop-ast (>= 0.4.0)
|
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)
|
213
248
|
rubocop-rake (0.6.0)
|
214
249
|
rubocop (~> 1.0)
|
215
|
-
rubocop-rspec (
|
216
|
-
rubocop (~> 1.
|
217
|
-
rubocop-capybara (~> 2.17)
|
250
|
+
rubocop-rspec (3.3.0)
|
251
|
+
rubocop (~> 1.61)
|
218
252
|
ruby-progressbar (1.13.0)
|
219
|
-
ruby_parser (3.
|
253
|
+
ruby_parser (3.21.1)
|
254
|
+
racc (~> 1.5)
|
220
255
|
sexp_processor (~> 4.16)
|
221
|
-
rubycritic (4.
|
222
|
-
flay (~> 2.
|
223
|
-
flog (~> 4.
|
224
|
-
launchy (>= 2.
|
225
|
-
parser (>= 2.
|
226
|
-
rainbow (~> 3.
|
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)
|
227
262
|
reek (~> 6.0, < 7.0)
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
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)
|
233
269
|
simplecov (0.22.0)
|
234
270
|
docile (~> 1.1)
|
235
271
|
simplecov-html (~> 0.11)
|
236
272
|
simplecov_json_formatter (~> 0.1)
|
237
273
|
simplecov-html (0.12.3)
|
238
274
|
simplecov_json_formatter (0.1.4)
|
239
|
-
|
275
|
+
strscan (3.1.0)
|
276
|
+
thor (1.3.1)
|
240
277
|
thread_safe (0.3.6)
|
241
|
-
timeout (0.
|
242
|
-
tty-which (0.
|
278
|
+
timeout (0.4.1)
|
279
|
+
tty-which (0.5.0)
|
243
280
|
tzinfo (2.0.6)
|
244
281
|
concurrent-ruby (~> 1.0)
|
245
|
-
unicode-display_width (
|
246
|
-
|
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)
|
247
286
|
axiom-types (~> 0.1)
|
248
287
|
coercible (~> 1.0)
|
249
288
|
descendants_tracker (~> 0.0, >= 0.0.3)
|
250
|
-
|
251
|
-
websocket-driver (0.7.5)
|
289
|
+
websocket-driver (0.7.6)
|
252
290
|
websocket-extensions (>= 0.1.0)
|
253
291
|
websocket-extensions (0.1.5)
|
254
|
-
zeitwerk (2.
|
292
|
+
zeitwerk (2.7.1)
|
255
293
|
|
256
294
|
PLATFORMS
|
257
|
-
|
295
|
+
arm64-darwin-23
|
296
|
+
arm64-darwin-24
|
258
297
|
|
259
298
|
DEPENDENCIES
|
260
|
-
appraisal (~> 2.
|
261
|
-
rails (= 7.0.4
|
262
|
-
rake (~> 13.
|
263
|
-
rspec (~> 3.
|
264
|
-
rubocop (~> 1.
|
265
|
-
rubocop-performance (~> 1.
|
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)
|
266
305
|
rubocop-rake (~> 0.6)
|
267
|
-
rubocop-rspec (~>
|
268
|
-
rubycritic (
|
306
|
+
rubocop-rspec (~> 3.3)
|
307
|
+
rubycritic (~> 4.9)
|
269
308
|
simplecov (~> 0.22)
|
270
309
|
tdc!
|
271
310
|
|