yoshiki 10.1.0 → 10.2.0
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/.rubocop-defaults.yml +33 -1
- data/.rubocop.yml +1 -1
- data/.yoshiki-ruby.yml +2 -2
- data/Gemfile.lock +14 -12
- data/lib/yoshiki/version.rb +1 -1
- data/yoshiki.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8730edc27325695ab7fc6ff022e5602d606e29605b8d2557881cce952a8275d2
|
|
4
|
+
data.tar.gz: 552be4b16ee6eab583ab3043a121742c8365b09f0e4149373fc0d496907a00b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7726d5b2f35c20555739bb2b4833406aa6c2368349d3598beba3e5e98bbc827d11bb26566ffec4e12d8216f2971b9a503fb151a669c7c61a9a6229c33fdd6934
|
|
7
|
+
data.tar.gz: cf1e2a91d243cc0eb45766acb217e8446c5947e8887fb91bf546cf64a60b997e046f92c18cc10230729fc9bd726e68039588d6d70b36bfe67e5c0f2ca8857897
|
data/.rubocop-defaults.yml
CHANGED
|
@@ -46,6 +46,8 @@ Lint/ConstantReassignment: # new in 1.70
|
|
|
46
46
|
Enabled: true
|
|
47
47
|
Lint/CopDirectiveSyntax: # new in 1.72
|
|
48
48
|
Enabled: true
|
|
49
|
+
Lint/DataDefineOverride: # new in 1.85
|
|
50
|
+
Enabled: true
|
|
49
51
|
Lint/DeprecatedConstants: # new in 1.8
|
|
50
52
|
Enabled: true
|
|
51
53
|
Lint/DuplicateBranch: # new in 1.3
|
|
@@ -114,6 +116,8 @@ Lint/UnexpectedBlockArity: # new in 1.5
|
|
|
114
116
|
Enabled: true
|
|
115
117
|
Lint/UnmodifiedReduceAccumulator: # new in 1.1
|
|
116
118
|
Enabled: true
|
|
119
|
+
Lint/UnreachablePatternBranch: # new in 1.85
|
|
120
|
+
Enabled: true
|
|
117
121
|
Lint/UselessConstantScoping: # new in 1.72
|
|
118
122
|
Enabled: true
|
|
119
123
|
Lint/UselessDefined: # new in 1.69
|
|
@@ -221,6 +225,8 @@ Style/DirEmpty: # new in 1.48
|
|
|
221
225
|
Enabled: true
|
|
222
226
|
Style/DocumentDynamicEvalDefinition: # new in 1.1
|
|
223
227
|
Enabled: true
|
|
228
|
+
Style/EmptyClassDefinition: # new in 1.84
|
|
229
|
+
Enabled: true
|
|
224
230
|
Style/EmptyHeredoc: # new in 1.32
|
|
225
231
|
Enabled: true
|
|
226
232
|
Style/EmptyStringInsideInterpolation: # new in 1.76
|
|
@@ -235,6 +241,8 @@ Style/FileEmpty: # new in 1.48
|
|
|
235
241
|
Enabled: true
|
|
236
242
|
Style/FileNull: # new in 1.69
|
|
237
243
|
Enabled: true
|
|
244
|
+
Style/FileOpen: # new in 1.85
|
|
245
|
+
Enabled: true
|
|
238
246
|
Style/FileRead: # new in 1.24
|
|
239
247
|
Enabled: true
|
|
240
248
|
Style/FileTouch: # new in 1.69
|
|
@@ -249,6 +257,8 @@ Style/HashFetchChain: # new in 1.75
|
|
|
249
257
|
Enabled: true
|
|
250
258
|
Style/HashSlice: # new in 1.71
|
|
251
259
|
Enabled: true
|
|
260
|
+
Style/HashSyntax: # updated in 1.67
|
|
261
|
+
Enabled: true
|
|
252
262
|
Style/IfWithBooleanLiteralBranches: # new in 1.9
|
|
253
263
|
Enabled: true
|
|
254
264
|
Style/InPatternThen: # new in 1.16
|
|
@@ -265,6 +275,8 @@ Style/MapCompactWithConditionalBlock: # new in 1.30
|
|
|
265
275
|
Enabled: true
|
|
266
276
|
Style/MapIntoArray: # new in 1.63
|
|
267
277
|
Enabled: true
|
|
278
|
+
Style/MapJoin: # new in 1.85
|
|
279
|
+
Enabled: true
|
|
268
280
|
Style/MapToHash: # new in 1.24
|
|
269
281
|
Enabled: true
|
|
270
282
|
Style/MapToSet: # new in 1.42
|
|
@@ -277,18 +289,28 @@ Style/MultilineInPatternThen: # new in 1.16
|
|
|
277
289
|
Enabled: true
|
|
278
290
|
Style/NegatedIfElseCondition: # new in 1.2
|
|
279
291
|
Enabled: true
|
|
292
|
+
Style/NegativeArrayIndex: # new in 1.84
|
|
293
|
+
Enabled: true
|
|
280
294
|
Style/NestedFileDirname: # new in 1.26
|
|
281
295
|
Enabled: true
|
|
282
296
|
Style/NilLambda: # new in 1.3
|
|
283
297
|
Enabled: true
|
|
284
298
|
Style/ObjectThen: # new in 1.28
|
|
285
299
|
Enabled: true
|
|
300
|
+
Style/OneClassPerFile: # new in 1.85
|
|
301
|
+
Enabled: true
|
|
286
302
|
Style/OpenStructUse: # new in 1.23
|
|
287
303
|
Enabled: true
|
|
288
304
|
Style/OperatorMethodCall: # new in 1.37
|
|
289
305
|
Enabled: true
|
|
306
|
+
Style/PartitionInsteadOfDoubleSelect: # new in 1.85
|
|
307
|
+
Enabled: true
|
|
308
|
+
Style/PredicateWithKind: # new in 1.85
|
|
309
|
+
Enabled: true
|
|
290
310
|
Style/QuotedSymbols: # new in 1.16
|
|
291
311
|
Enabled: true
|
|
312
|
+
Style/ReduceToHash: # new in 1.85
|
|
313
|
+
Enabled: true
|
|
292
314
|
Style/RedundantArgument: # new in 1.4
|
|
293
315
|
Enabled: true
|
|
294
316
|
Style/RedundantArrayConstructor: # new in 1.52
|
|
@@ -315,7 +337,7 @@ Style/RedundantInterpolationUnfreeze: # new in 1.66
|
|
|
315
337
|
Enabled: true
|
|
316
338
|
Style/RedundantLineContinuation: # new in 1.49
|
|
317
339
|
Enabled: true
|
|
318
|
-
Style/
|
|
340
|
+
Style/RedundantMinMaxBy: # new in 1.85
|
|
319
341
|
Enabled: true
|
|
320
342
|
Style/RedundantRegexpArgument: # new in 1.53
|
|
321
343
|
Enabled: true
|
|
@@ -325,8 +347,16 @@ Style/RedundantSelfAssignmentBranch: # new in 1.19
|
|
|
325
347
|
Enabled: true
|
|
326
348
|
Style/RedundantStringEscape: # new in 1.37
|
|
327
349
|
Enabled: true
|
|
350
|
+
Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
|
|
351
|
+
Enabled: true
|
|
352
|
+
Style/ReverseFind: # new in 1.84
|
|
353
|
+
Enabled: true
|
|
328
354
|
Style/SafeNavigationChainLength: # new in 1.68
|
|
329
355
|
Enabled: true
|
|
356
|
+
Style/SelectByKind: # new in 1.85
|
|
357
|
+
Enabled: true
|
|
358
|
+
Style/SelectByRange: # new in 1.85
|
|
359
|
+
Enabled: true
|
|
330
360
|
Style/SendWithLiteralMethodName: # new in 1.64
|
|
331
361
|
Enabled: true
|
|
332
362
|
Style/SelectByRegexp: # new in 1.22
|
|
@@ -341,5 +371,7 @@ Style/SuperWithArgsParentheses: # new in 1.58
|
|
|
341
371
|
Enabled: false
|
|
342
372
|
Style/SwapValues: # new in 1.1
|
|
343
373
|
Enabled: true
|
|
374
|
+
Style/TallyMethod: # new in 1.85
|
|
375
|
+
Enabled: true
|
|
344
376
|
Style/YAMLFileRead: # new in 1.53
|
|
345
377
|
Enabled: true
|
data/.rubocop.yml
CHANGED
data/.yoshiki-ruby.yml
CHANGED
|
@@ -134,8 +134,6 @@ Style/EndlessMethod: # new in 1.8
|
|
|
134
134
|
Style/FrozenStringLiteralComment:
|
|
135
135
|
EnforcedStyle: never # huzzah for ruby 3.4
|
|
136
136
|
SafeAutoCorrect: true # default is `false`
|
|
137
|
-
Style/HashSyntax:
|
|
138
|
-
EnforcedShorthandSyntax: consistent # default is `always`
|
|
139
137
|
Style/MethodDefParentheses:
|
|
140
138
|
EnforcedStyle: require_no_parentheses
|
|
141
139
|
Style/MixinUsage:
|
|
@@ -166,6 +164,8 @@ Style/PercentLiteralDelimiters:
|
|
|
166
164
|
"%x": "[]"
|
|
167
165
|
Style/PerlBackrefs:
|
|
168
166
|
Enabled: false
|
|
167
|
+
Style/RedundantStructKeywordInit: # new in 1.85
|
|
168
|
+
Enabled: false # keyword_init: true is still "good"
|
|
169
169
|
Style/RescueModifier:
|
|
170
170
|
Enabled: false
|
|
171
171
|
Style/Semicolon:
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
yoshiki (10.
|
|
5
|
-
rubocop (= 1.
|
|
4
|
+
yoshiki (10.2.0)
|
|
5
|
+
rubocop (= 1.86.0)
|
|
6
6
|
rubocop-capybara (= 2.22.1)
|
|
7
7
|
rubocop-factory_bot (= 2.28.0)
|
|
8
8
|
rubocop-performance (= 1.26.1)
|
|
@@ -14,7 +14,7 @@ PATH
|
|
|
14
14
|
GEM
|
|
15
15
|
remote: https://rubygems.org/
|
|
16
16
|
specs:
|
|
17
|
-
activesupport (8.1.
|
|
17
|
+
activesupport (8.1.3)
|
|
18
18
|
base64
|
|
19
19
|
bigdecimal
|
|
20
20
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
@@ -39,18 +39,19 @@ GEM
|
|
|
39
39
|
i18n (1.14.8)
|
|
40
40
|
concurrent-ruby (~> 1.0)
|
|
41
41
|
io-console (0.8.2)
|
|
42
|
-
json (2.
|
|
42
|
+
json (2.19.3)
|
|
43
43
|
language_server-protocol (3.17.0.5)
|
|
44
44
|
lint_roller (1.1.0)
|
|
45
45
|
logger (1.7.0)
|
|
46
46
|
method_source (1.1.0)
|
|
47
|
-
minitest (6.0.
|
|
47
|
+
minitest (6.0.2)
|
|
48
|
+
drb (~> 2.0)
|
|
48
49
|
prism (~> 1.5)
|
|
49
50
|
parallel (1.27.0)
|
|
50
|
-
parser (3.3.
|
|
51
|
+
parser (3.3.11.1)
|
|
51
52
|
ast (~> 2.4.1)
|
|
52
53
|
racc
|
|
53
|
-
prism (1.
|
|
54
|
+
prism (1.9.0)
|
|
54
55
|
pry (0.16.0)
|
|
55
56
|
coderay (~> 1.1)
|
|
56
57
|
method_source (~> 1.0)
|
|
@@ -59,7 +60,7 @@ GEM
|
|
|
59
60
|
date
|
|
60
61
|
stringio
|
|
61
62
|
racc (1.8.1)
|
|
62
|
-
rack (3.2.
|
|
63
|
+
rack (3.2.5)
|
|
63
64
|
rainbow (3.1.1)
|
|
64
65
|
rake (13.3.1)
|
|
65
66
|
regexp_parser (2.11.3)
|
|
@@ -78,7 +79,7 @@ GEM
|
|
|
78
79
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
79
80
|
rspec-support (~> 3.13.0)
|
|
80
81
|
rspec-support (3.13.6)
|
|
81
|
-
rubocop (1.
|
|
82
|
+
rubocop (1.86.0)
|
|
82
83
|
json (~> 2.3)
|
|
83
84
|
language_server-protocol (~> 3.17.0.2)
|
|
84
85
|
lint_roller (~> 1.1.0)
|
|
@@ -86,10 +87,10 @@ GEM
|
|
|
86
87
|
parser (>= 3.3.0.2)
|
|
87
88
|
rainbow (>= 2.2.2, < 4.0)
|
|
88
89
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
89
|
-
rubocop-ast (>= 1.
|
|
90
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
90
91
|
ruby-progressbar (~> 1.7)
|
|
91
92
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
92
|
-
rubocop-ast (1.49.
|
|
93
|
+
rubocop-ast (1.49.1)
|
|
93
94
|
parser (>= 3.3.7.2)
|
|
94
95
|
prism (~> 1.7)
|
|
95
96
|
rubocop-capybara (2.22.1)
|
|
@@ -130,6 +131,7 @@ GEM
|
|
|
130
131
|
|
|
131
132
|
PLATFORMS
|
|
132
133
|
arm64-darwin-24
|
|
134
|
+
arm64-darwin-25
|
|
133
135
|
|
|
134
136
|
DEPENDENCIES
|
|
135
137
|
pry
|
|
@@ -139,4 +141,4 @@ DEPENDENCIES
|
|
|
139
141
|
yoshiki!
|
|
140
142
|
|
|
141
143
|
BUNDLED WITH
|
|
142
|
-
|
|
144
|
+
4.0.9
|
data/lib/yoshiki/version.rb
CHANGED
data/yoshiki.gemspec
CHANGED
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
|
|
21
21
|
spec.required_ruby_version = '>= 3.4.0'
|
|
22
22
|
|
|
23
|
-
spec.add_dependency 'rubocop', '1.
|
|
23
|
+
spec.add_dependency 'rubocop', '1.86.0'
|
|
24
24
|
spec.add_dependency 'rubocop-capybara', '2.22.1'
|
|
25
25
|
spec.add_dependency 'rubocop-factory_bot', '2.28.0'
|
|
26
26
|
spec.add_dependency 'rubocop-performance', '1.26.1'
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yoshiki
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.
|
|
4
|
+
version: 10.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- BM5k
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: rubocop
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 1.
|
|
18
|
+
version: 1.86.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 1.
|
|
25
|
+
version: 1.86.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: rubocop-capybara
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -170,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
170
170
|
- !ruby/object:Gem::Version
|
|
171
171
|
version: '0'
|
|
172
172
|
requirements: []
|
|
173
|
-
rubygems_version:
|
|
173
|
+
rubygems_version: 4.0.9
|
|
174
174
|
specification_version: 4
|
|
175
175
|
summary: Dev Fu! Style
|
|
176
176
|
test_files: []
|