tdc 0.4.7 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb3c229b0784bc8c94f413b0302eeb67724754a117ee21a6cebe94aaab9f421c
4
- data.tar.gz: 92ce9adcb19eea932c0720dd7b7d9833d22512842a98afe7634ea99dae070768
3
+ metadata.gz: f686a36de5c9af9dc1b77bac6abaa6e55506d35756c6680890f716de11559cbc
4
+ data.tar.gz: f9d17bb78386293b038f4bb72ee81547307ffc08ad96fedfc95fc03102ba5d74
5
5
  SHA512:
6
- metadata.gz: 432b68da9444ebffd4ff1f1c10fa921d4f378f63325c4b6e1656d88d894134b53e92848b330efb9be1e20114f8df89014f1828bc13dd08f9e642362aa971abf7
7
- data.tar.gz: 200af92ff38ac6a5331eff0a428d0553a6423f1c6f1e4e0ee34d80a11c874253bf775c0bd9386eb4539c223f24653ebd935651d073394fb0e08f728945533b54
6
+ metadata.gz: 0461bea940925ae83f1269990ec75f876219a031f775a0cb208ac54586e85a07def8abea3cedb1d8ea0cbd0efddaa2c31e5dac23696a8625ae7708b5c1957fb1
7
+ data.tar.gz: 39b7ac46e360ec68b2d69dce658f11a71dabb36f98d9b763798c6ddd715a0cddecda0a80785e1519a56a2d761e655f96ab21aef36be919acc0dfcfae93d8a82c
data/.rubocop.yml CHANGED
@@ -1,9 +1,10 @@
1
1
  require:
2
+ - rubocop-rake
2
3
  - rubocop-rspec
3
4
 
4
5
  AllCops:
5
6
  NewCops: enable
6
- TargetRubyVersion: 2.6
7
+ TargetRubyVersion: 3.0
7
8
 
8
9
  Exclude:
9
10
  - 'bin/**/*'
@@ -69,6 +70,9 @@ Style/BlockDelimiters:
69
70
  Style/Documentation:
70
71
  Enabled: false
71
72
 
73
+ Style/DocumentDynamicEvalDefinition:
74
+ Enabled: false
75
+
72
76
  Style/EmptyMethod:
73
77
  EnforcedStyle: expanded
74
78
 
@@ -85,6 +89,10 @@ Style/HashSyntax:
85
89
  Style/MutableConstant:
86
90
  Enabled: false
87
91
 
92
+ # We are going to continue to use OpenStruct
93
+ Style/OpenStructUse:
94
+ Enabled: false
95
+
88
96
  # No need to mention StandardError.
89
97
  Style/RescueStandardError:
90
98
  EnforcedStyle: implicit
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.6
1
+ 3.0.5
data/Appraisals CHANGED
@@ -1,7 +1,7 @@
1
- appraise "rails-5" do
2
- gem "rails", "5.2.4.4"
1
+ appraise "rails-6-1" do
2
+ gem "rails", "6.1.3.2"
3
3
  end
4
4
 
5
- appraise "rails-6" do
6
- gem "rails", "6.0.3.4"
5
+ appraise "rails-7" do
6
+ gem "rails", "7.0.4.3"
7
7
  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
+ ## [0.6.0] - 2023-03-13
10
+
11
+ - Support Rails 7.0.x
12
+
13
+ #### Breaking Changes
14
+
15
+ - Drop support for Ruby 2.7
16
+ - Drop support for Rails 6.0
17
+
18
+ ## [0.5.0] - 2021-06-12
19
+
20
+ - Support Rails 6.1.x
21
+ - Drop support for Rails 5.2.x
22
+
9
23
  ## [0.4.7] - 2020-11-04
10
24
 
11
25
  - Support Rails 6.0.x
data/Rakefile CHANGED
@@ -14,4 +14,5 @@ RubyCritic::RakeTask.new do |task|
14
14
  task.paths = files
15
15
  end
16
16
 
17
- task :default => [:rubocop, :spec]
17
+ task :all => [:rubocop, :spec]
18
+ task :default => [:spec]
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "5.2.4.4"
5
+ gem "rails", "6.1.3.2"
6
6
 
7
7
  gemspec path: "../"
@@ -0,0 +1,274 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ tdc (0.6.0)
5
+ activesupport (>= 6.0, < 7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.1.3.2)
11
+ actionpack (= 6.1.3.2)
12
+ activesupport (= 6.1.3.2)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.1.3.2)
16
+ actionpack (= 6.1.3.2)
17
+ activejob (= 6.1.3.2)
18
+ activerecord (= 6.1.3.2)
19
+ activestorage (= 6.1.3.2)
20
+ activesupport (= 6.1.3.2)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.1.3.2)
23
+ actionpack (= 6.1.3.2)
24
+ actionview (= 6.1.3.2)
25
+ activejob (= 6.1.3.2)
26
+ activesupport (= 6.1.3.2)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.3.2)
30
+ actionview (= 6.1.3.2)
31
+ activesupport (= 6.1.3.2)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.1.3.2)
37
+ actionpack (= 6.1.3.2)
38
+ activerecord (= 6.1.3.2)
39
+ activestorage (= 6.1.3.2)
40
+ activesupport (= 6.1.3.2)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.3.2)
43
+ activesupport (= 6.1.3.2)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.3.2)
49
+ activesupport (= 6.1.3.2)
50
+ globalid (>= 0.3.6)
51
+ activemodel (6.1.3.2)
52
+ activesupport (= 6.1.3.2)
53
+ activerecord (6.1.3.2)
54
+ activemodel (= 6.1.3.2)
55
+ activesupport (= 6.1.3.2)
56
+ activestorage (6.1.3.2)
57
+ actionpack (= 6.1.3.2)
58
+ activejob (= 6.1.3.2)
59
+ activerecord (= 6.1.3.2)
60
+ activesupport (= 6.1.3.2)
61
+ marcel (~> 1.0.0)
62
+ mini_mime (~> 1.0.2)
63
+ activesupport (6.1.3.2)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ addressable (2.8.1)
70
+ public_suffix (>= 2.0.2, < 6.0)
71
+ appraisal (2.4.1)
72
+ bundler
73
+ rake
74
+ thor (>= 0.14.0)
75
+ ast (2.4.2)
76
+ axiom-types (0.1.1)
77
+ descendants_tracker (~> 0.0.4)
78
+ ice_nine (~> 0.11.0)
79
+ thread_safe (~> 0.3, >= 0.3.1)
80
+ builder (3.2.4)
81
+ coercible (1.0.0)
82
+ descendants_tracker (~> 0.0.1)
83
+ concurrent-ruby (1.2.2)
84
+ crass (1.0.6)
85
+ date (3.3.3)
86
+ descendants_tracker (0.0.4)
87
+ thread_safe (~> 0.3, >= 0.3.1)
88
+ diff-lcs (1.5.0)
89
+ docile (1.4.0)
90
+ equalizer (0.0.11)
91
+ erubi (1.12.0)
92
+ flay (2.13.0)
93
+ erubi (~> 1.10)
94
+ path_expander (~> 1.0)
95
+ ruby_parser (~> 3.0)
96
+ sexp_processor (~> 4.0)
97
+ flog (4.6.6)
98
+ path_expander (~> 1.0)
99
+ ruby_parser (~> 3.1, > 3.1.0)
100
+ sexp_processor (~> 4.8)
101
+ globalid (1.1.0)
102
+ activesupport (>= 5.0)
103
+ i18n (1.12.0)
104
+ concurrent-ruby (~> 1.0)
105
+ ice_nine (0.11.2)
106
+ json (2.6.3)
107
+ kwalify (0.7.2)
108
+ launchy (2.5.2)
109
+ addressable (~> 2.8)
110
+ loofah (2.19.1)
111
+ crass (~> 1.0.2)
112
+ nokogiri (>= 1.5.9)
113
+ mail (2.8.1)
114
+ mini_mime (>= 0.1.1)
115
+ net-imap
116
+ net-pop
117
+ net-smtp
118
+ marcel (1.0.2)
119
+ method_source (1.0.0)
120
+ mini_mime (1.0.3)
121
+ minitest (5.18.0)
122
+ net-imap (0.3.4)
123
+ date
124
+ net-protocol
125
+ net-pop (0.1.2)
126
+ net-protocol
127
+ net-protocol (0.2.1)
128
+ timeout
129
+ net-smtp (0.3.3)
130
+ net-protocol
131
+ nio4r (2.5.8)
132
+ nokogiri (1.14.2-x86_64-darwin)
133
+ racc (~> 1.4)
134
+ parallel (1.22.1)
135
+ parser (3.2.1.1)
136
+ ast (~> 2.4.1)
137
+ path_expander (1.1.1)
138
+ public_suffix (5.0.1)
139
+ racc (1.6.2)
140
+ rack (2.2.6.4)
141
+ rack-test (2.0.2)
142
+ rack (>= 1.3)
143
+ rails (6.1.3.2)
144
+ actioncable (= 6.1.3.2)
145
+ actionmailbox (= 6.1.3.2)
146
+ actionmailer (= 6.1.3.2)
147
+ actionpack (= 6.1.3.2)
148
+ actiontext (= 6.1.3.2)
149
+ actionview (= 6.1.3.2)
150
+ activejob (= 6.1.3.2)
151
+ activemodel (= 6.1.3.2)
152
+ activerecord (= 6.1.3.2)
153
+ activestorage (= 6.1.3.2)
154
+ activesupport (= 6.1.3.2)
155
+ bundler (>= 1.15.0)
156
+ railties (= 6.1.3.2)
157
+ sprockets-rails (>= 2.0.0)
158
+ rails-dom-testing (2.0.3)
159
+ activesupport (>= 4.2.0)
160
+ nokogiri (>= 1.6)
161
+ rails-html-sanitizer (1.5.0)
162
+ loofah (~> 2.19, >= 2.19.1)
163
+ railties (6.1.3.2)
164
+ actionpack (= 6.1.3.2)
165
+ activesupport (= 6.1.3.2)
166
+ method_source
167
+ rake (>= 0.8.7)
168
+ thor (~> 1.0)
169
+ rainbow (3.1.1)
170
+ rake (13.0.6)
171
+ reek (6.1.4)
172
+ kwalify (~> 0.7.0)
173
+ parser (~> 3.2.0)
174
+ rainbow (>= 2.0, < 4.0)
175
+ regexp_parser (2.7.0)
176
+ rexml (3.2.5)
177
+ rspec (3.12.0)
178
+ rspec-core (~> 3.12.0)
179
+ rspec-expectations (~> 3.12.0)
180
+ rspec-mocks (~> 3.12.0)
181
+ rspec-core (3.12.1)
182
+ rspec-support (~> 3.12.0)
183
+ rspec-expectations (3.12.2)
184
+ diff-lcs (>= 1.2.0, < 2.0)
185
+ rspec-support (~> 3.12.0)
186
+ rspec-mocks (3.12.4)
187
+ diff-lcs (>= 1.2.0, < 2.0)
188
+ rspec-support (~> 3.12.0)
189
+ rspec-support (3.12.0)
190
+ rubocop (1.48.1)
191
+ json (~> 2.3)
192
+ parallel (~> 1.10)
193
+ parser (>= 3.2.0.0)
194
+ rainbow (>= 2.2.2, < 4.0)
195
+ regexp_parser (>= 1.8, < 3.0)
196
+ rexml (>= 3.2.5, < 4.0)
197
+ rubocop-ast (>= 1.26.0, < 2.0)
198
+ ruby-progressbar (~> 1.7)
199
+ unicode-display_width (>= 2.4.0, < 3.0)
200
+ rubocop-ast (1.27.0)
201
+ parser (>= 3.2.1.0)
202
+ rubocop-capybara (2.17.1)
203
+ rubocop (~> 1.41)
204
+ rubocop-performance (1.16.0)
205
+ rubocop (>= 1.7.0, < 2.0)
206
+ rubocop-ast (>= 0.4.0)
207
+ rubocop-rake (0.6.0)
208
+ rubocop (~> 1.0)
209
+ rubocop-rspec (2.19.0)
210
+ rubocop (~> 1.33)
211
+ rubocop-capybara (~> 2.17)
212
+ ruby-progressbar (1.13.0)
213
+ ruby_parser (3.20.0)
214
+ sexp_processor (~> 4.16)
215
+ rubycritic (4.7.0)
216
+ flay (~> 2.8)
217
+ flog (~> 4.4)
218
+ launchy (>= 2.0.0)
219
+ parser (>= 2.6.0)
220
+ rainbow (~> 3.0)
221
+ reek (~> 6.0, < 7.0)
222
+ ruby_parser (~> 3.8)
223
+ simplecov (>= 0.17.0)
224
+ tty-which (~> 0.4.0)
225
+ virtus (~> 1.0)
226
+ sexp_processor (4.16.1)
227
+ simplecov (0.22.0)
228
+ docile (~> 1.1)
229
+ simplecov-html (~> 0.11)
230
+ simplecov_json_formatter (~> 0.1)
231
+ simplecov-html (0.12.3)
232
+ simplecov_json_formatter (0.1.4)
233
+ sprockets (4.2.0)
234
+ concurrent-ruby (~> 1.0)
235
+ rack (>= 2.2.4, < 4)
236
+ sprockets-rails (3.4.2)
237
+ actionpack (>= 5.2)
238
+ activesupport (>= 5.2)
239
+ sprockets (>= 3.0.0)
240
+ thor (1.2.1)
241
+ thread_safe (0.3.6)
242
+ timeout (0.3.2)
243
+ tty-which (0.4.2)
244
+ tzinfo (2.0.6)
245
+ concurrent-ruby (~> 1.0)
246
+ unicode-display_width (2.4.2)
247
+ virtus (1.0.5)
248
+ axiom-types (~> 0.1)
249
+ coercible (~> 1.0)
250
+ descendants_tracker (~> 0.0, >= 0.0.3)
251
+ equalizer (~> 0.0, >= 0.0.9)
252
+ websocket-driver (0.7.5)
253
+ websocket-extensions (>= 0.1.0)
254
+ websocket-extensions (0.1.5)
255
+ zeitwerk (2.6.7)
256
+
257
+ PLATFORMS
258
+ x86_64-darwin-22
259
+
260
+ DEPENDENCIES
261
+ appraisal (~> 2.4)
262
+ rails (= 6.1.3.2)
263
+ rake (~> 13.0)
264
+ rspec (~> 3.12)
265
+ rubocop (~> 1.48)
266
+ rubocop-performance (~> 1.16)
267
+ rubocop-rake (~> 0.6)
268
+ rubocop-rspec (~> 2.19)
269
+ rubycritic (>= 4.7)
270
+ simplecov (~> 0.22)
271
+ tdc!
272
+
273
+ BUNDLED WITH
274
+ 2.4.8
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "6.0.3.4"
5
+ gem "rails", "7.0.4.3"
6
6
 
7
7
  gemspec path: "../"
@@ -0,0 +1,273 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ tdc (0.6.0)
5
+ activesupport (>= 6.0, < 7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.0.4.3)
11
+ actionpack (= 7.0.4.3)
12
+ activesupport (= 7.0.4.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (7.0.4.3)
16
+ actionpack (= 7.0.4.3)
17
+ activejob (= 7.0.4.3)
18
+ activerecord (= 7.0.4.3)
19
+ activestorage (= 7.0.4.3)
20
+ activesupport (= 7.0.4.3)
21
+ mail (>= 2.7.1)
22
+ net-imap
23
+ net-pop
24
+ net-smtp
25
+ actionmailer (7.0.4.3)
26
+ actionpack (= 7.0.4.3)
27
+ actionview (= 7.0.4.3)
28
+ activejob (= 7.0.4.3)
29
+ activesupport (= 7.0.4.3)
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.4.3)
36
+ actionview (= 7.0.4.3)
37
+ activesupport (= 7.0.4.3)
38
+ rack (~> 2.0, >= 2.2.0)
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.4.3)
43
+ actionpack (= 7.0.4.3)
44
+ activerecord (= 7.0.4.3)
45
+ activestorage (= 7.0.4.3)
46
+ activesupport (= 7.0.4.3)
47
+ globalid (>= 0.6.0)
48
+ nokogiri (>= 1.8.5)
49
+ actionview (7.0.4.3)
50
+ activesupport (= 7.0.4.3)
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.4.3)
56
+ activesupport (= 7.0.4.3)
57
+ globalid (>= 0.3.6)
58
+ activemodel (7.0.4.3)
59
+ activesupport (= 7.0.4.3)
60
+ activerecord (7.0.4.3)
61
+ activemodel (= 7.0.4.3)
62
+ activesupport (= 7.0.4.3)
63
+ activestorage (7.0.4.3)
64
+ actionpack (= 7.0.4.3)
65
+ activejob (= 7.0.4.3)
66
+ activerecord (= 7.0.4.3)
67
+ activesupport (= 7.0.4.3)
68
+ marcel (~> 1.0)
69
+ mini_mime (>= 1.1.0)
70
+ activesupport (7.0.4.3)
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.1)
76
+ public_suffix (>= 2.0.2, < 6.0)
77
+ appraisal (2.4.1)
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
+ builder (3.2.4)
87
+ coercible (1.0.0)
88
+ descendants_tracker (~> 0.0.1)
89
+ concurrent-ruby (1.2.2)
90
+ crass (1.0.6)
91
+ date (3.3.3)
92
+ descendants_tracker (0.0.4)
93
+ thread_safe (~> 0.3, >= 0.3.1)
94
+ diff-lcs (1.5.0)
95
+ docile (1.4.0)
96
+ equalizer (0.0.11)
97
+ erubi (1.12.0)
98
+ flay (2.13.0)
99
+ erubi (~> 1.10)
100
+ path_expander (~> 1.0)
101
+ ruby_parser (~> 3.0)
102
+ sexp_processor (~> 4.0)
103
+ flog (4.6.6)
104
+ path_expander (~> 1.0)
105
+ ruby_parser (~> 3.1, > 3.1.0)
106
+ sexp_processor (~> 4.8)
107
+ globalid (1.1.0)
108
+ activesupport (>= 5.0)
109
+ i18n (1.12.0)
110
+ concurrent-ruby (~> 1.0)
111
+ ice_nine (0.11.2)
112
+ json (2.6.3)
113
+ kwalify (0.7.2)
114
+ launchy (2.5.2)
115
+ addressable (~> 2.8)
116
+ loofah (2.19.1)
117
+ crass (~> 1.0.2)
118
+ nokogiri (>= 1.5.9)
119
+ mail (2.8.1)
120
+ mini_mime (>= 0.1.1)
121
+ net-imap
122
+ net-pop
123
+ net-smtp
124
+ marcel (1.0.2)
125
+ method_source (1.0.0)
126
+ mini_mime (1.1.2)
127
+ minitest (5.18.0)
128
+ net-imap (0.3.4)
129
+ date
130
+ net-protocol
131
+ net-pop (0.1.2)
132
+ net-protocol
133
+ net-protocol (0.2.1)
134
+ timeout
135
+ net-smtp (0.3.3)
136
+ net-protocol
137
+ nio4r (2.5.8)
138
+ nokogiri (1.14.2-x86_64-darwin)
139
+ racc (~> 1.4)
140
+ parallel (1.22.1)
141
+ parser (3.2.1.1)
142
+ ast (~> 2.4.1)
143
+ path_expander (1.1.1)
144
+ public_suffix (5.0.1)
145
+ racc (1.6.2)
146
+ rack (2.2.6.4)
147
+ rack-test (2.0.2)
148
+ rack (>= 1.3)
149
+ rails (7.0.4.3)
150
+ actioncable (= 7.0.4.3)
151
+ actionmailbox (= 7.0.4.3)
152
+ actionmailer (= 7.0.4.3)
153
+ actionpack (= 7.0.4.3)
154
+ actiontext (= 7.0.4.3)
155
+ actionview (= 7.0.4.3)
156
+ activejob (= 7.0.4.3)
157
+ activemodel (= 7.0.4.3)
158
+ activerecord (= 7.0.4.3)
159
+ activestorage (= 7.0.4.3)
160
+ activesupport (= 7.0.4.3)
161
+ bundler (>= 1.15.0)
162
+ railties (= 7.0.4.3)
163
+ rails-dom-testing (2.0.3)
164
+ activesupport (>= 4.2.0)
165
+ nokogiri (>= 1.6)
166
+ rails-html-sanitizer (1.5.0)
167
+ loofah (~> 2.19, >= 2.19.1)
168
+ railties (7.0.4.3)
169
+ actionpack (= 7.0.4.3)
170
+ activesupport (= 7.0.4.3)
171
+ method_source
172
+ rake (>= 12.2)
173
+ thor (~> 1.0)
174
+ zeitwerk (~> 2.5)
175
+ rainbow (3.1.1)
176
+ rake (13.0.6)
177
+ reek (6.1.4)
178
+ kwalify (~> 0.7.0)
179
+ parser (~> 3.2.0)
180
+ rainbow (>= 2.0, < 4.0)
181
+ regexp_parser (2.7.0)
182
+ rexml (3.2.5)
183
+ rspec (3.12.0)
184
+ rspec-core (~> 3.12.0)
185
+ rspec-expectations (~> 3.12.0)
186
+ rspec-mocks (~> 3.12.0)
187
+ rspec-core (3.12.1)
188
+ rspec-support (~> 3.12.0)
189
+ rspec-expectations (3.12.2)
190
+ diff-lcs (>= 1.2.0, < 2.0)
191
+ rspec-support (~> 3.12.0)
192
+ rspec-mocks (3.12.4)
193
+ diff-lcs (>= 1.2.0, < 2.0)
194
+ rspec-support (~> 3.12.0)
195
+ rspec-support (3.12.0)
196
+ rubocop (1.48.1)
197
+ json (~> 2.3)
198
+ parallel (~> 1.10)
199
+ parser (>= 3.2.0.0)
200
+ rainbow (>= 2.2.2, < 4.0)
201
+ regexp_parser (>= 1.8, < 3.0)
202
+ rexml (>= 3.2.5, < 4.0)
203
+ rubocop-ast (>= 1.26.0, < 2.0)
204
+ ruby-progressbar (~> 1.7)
205
+ unicode-display_width (>= 2.4.0, < 3.0)
206
+ rubocop-ast (1.27.0)
207
+ parser (>= 3.2.1.0)
208
+ rubocop-capybara (2.17.1)
209
+ rubocop (~> 1.41)
210
+ rubocop-performance (1.16.0)
211
+ rubocop (>= 1.7.0, < 2.0)
212
+ rubocop-ast (>= 0.4.0)
213
+ rubocop-rake (0.6.0)
214
+ rubocop (~> 1.0)
215
+ rubocop-rspec (2.19.0)
216
+ rubocop (~> 1.33)
217
+ rubocop-capybara (~> 2.17)
218
+ ruby-progressbar (1.13.0)
219
+ ruby_parser (3.20.0)
220
+ sexp_processor (~> 4.16)
221
+ rubycritic (4.7.0)
222
+ flay (~> 2.8)
223
+ flog (~> 4.4)
224
+ launchy (>= 2.0.0)
225
+ parser (>= 2.6.0)
226
+ rainbow (~> 3.0)
227
+ reek (~> 6.0, < 7.0)
228
+ ruby_parser (~> 3.8)
229
+ simplecov (>= 0.17.0)
230
+ tty-which (~> 0.4.0)
231
+ virtus (~> 1.0)
232
+ sexp_processor (4.16.1)
233
+ simplecov (0.22.0)
234
+ docile (~> 1.1)
235
+ simplecov-html (~> 0.11)
236
+ simplecov_json_formatter (~> 0.1)
237
+ simplecov-html (0.12.3)
238
+ simplecov_json_formatter (0.1.4)
239
+ thor (1.2.1)
240
+ thread_safe (0.3.6)
241
+ timeout (0.3.2)
242
+ tty-which (0.4.2)
243
+ tzinfo (2.0.6)
244
+ concurrent-ruby (~> 1.0)
245
+ unicode-display_width (2.4.2)
246
+ virtus (1.0.5)
247
+ axiom-types (~> 0.1)
248
+ coercible (~> 1.0)
249
+ descendants_tracker (~> 0.0, >= 0.0.3)
250
+ equalizer (~> 0.0, >= 0.0.9)
251
+ websocket-driver (0.7.5)
252
+ websocket-extensions (>= 0.1.0)
253
+ websocket-extensions (0.1.5)
254
+ zeitwerk (2.6.7)
255
+
256
+ PLATFORMS
257
+ x86_64-darwin-22
258
+
259
+ DEPENDENCIES
260
+ appraisal (~> 2.4)
261
+ rails (= 7.0.4.3)
262
+ rake (~> 13.0)
263
+ rspec (~> 3.12)
264
+ rubocop (~> 1.48)
265
+ rubocop-performance (~> 1.16)
266
+ rubocop-rake (~> 0.6)
267
+ rubocop-rspec (~> 2.19)
268
+ rubycritic (>= 4.7)
269
+ simplecov (~> 0.22)
270
+ tdc!
271
+
272
+ BUNDLED WITH
273
+ 2.4.8
data/lib/tdc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Tdc
2
- VERSION = "0.4.7"
2
+ VERSION = "0.6.0"
3
3
  end