yoshiki 10.0.0.pre.2 → 10.1.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/.gitlab-ci.yml +10 -0
- data/.rubocop-defaults-rails.yml +24 -2
- data/.rubocop-defaults-rspec.yml +6 -0
- data/.rubocop-defaults.yml +45 -2
- data/.yoshiki-ruby.yml +1 -1
- data/Gemfile.lock +68 -59
- data/README.md +3 -1
- data/lib/yoshiki/version.rb +1 -1
- data/yoshiki.gemspec +7 -7
- metadata +17 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87f287d5990d0a8a3fb41b1f7486ea2a29728abd8476fb375de20d9905c62d02
|
|
4
|
+
data.tar.gz: 951cb194f5e60ffd2aefb1e38f8c2e51e0a29676171b41d0ccb017471e62c427
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f70b9570692542120add05da2b21f0e67a967aa4d546ca22769eb395cc578a0cd7b0835ecab9866aa5ea7590f37b67c177f97aad27c1a98a36cccd171086daa
|
|
7
|
+
data.tar.gz: ec680083572e823266b5d73e1a33642667ec53da9fa85ce85bb2b55e278dc8c9f9b0bdfee2a4f839aa501811bd6e4ee96a99490d7386035f212d122673a535cc
|
data/.gitlab-ci.yml
CHANGED
|
@@ -8,6 +8,16 @@ before_script:
|
|
|
8
8
|
- gem update bundler
|
|
9
9
|
- bundle install --jobs $(nproc) --retry=3
|
|
10
10
|
|
|
11
|
+
ruby 4.0:
|
|
12
|
+
cache:
|
|
13
|
+
key: "$CI_BUILD_REF_NAME-3.4"
|
|
14
|
+
paths:
|
|
15
|
+
- vendor/bundle
|
|
16
|
+
image: ruby:4.0
|
|
17
|
+
script:
|
|
18
|
+
- bundle exec rake spec rubocop
|
|
19
|
+
stage: test
|
|
20
|
+
|
|
11
21
|
ruby 3.4:
|
|
12
22
|
cache:
|
|
13
23
|
key: "$CI_BUILD_REF_NAME-3.4"
|
data/.rubocop-defaults-rails.yml
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
plugins:
|
|
2
2
|
- rubocop-rails
|
|
3
|
-
|
|
4
|
-
require:
|
|
5
3
|
- rubocop-capybara
|
|
6
4
|
- rubocop-factory_bot
|
|
7
5
|
- rubocop-rspec_rails
|
|
@@ -9,13 +7,21 @@ require:
|
|
|
9
7
|
AllCops:
|
|
10
8
|
ActiveSupportExtensionsEnabled: true
|
|
11
9
|
|
|
10
|
+
# https://docs.rubocop.org/rubocop-rails/cops_rails.html
|
|
11
|
+
|
|
12
12
|
Rails:
|
|
13
13
|
Enabled: true
|
|
14
14
|
|
|
15
|
+
# https://docs.rubocop.org/rubocop-capybara/cops_capybara.html
|
|
16
|
+
|
|
17
|
+
Capybara/FindAllFirst: # new in 2.22
|
|
18
|
+
Enabled: true
|
|
15
19
|
Capybara/MatchStyle: # new in 2.17
|
|
16
20
|
Enabled: true
|
|
17
21
|
Capybara/NegationMatcher: # new in 2.14
|
|
18
22
|
Enabled: true
|
|
23
|
+
Capybara/NegationMatcherAfterVisit: # new in 2.22
|
|
24
|
+
Enabled: true
|
|
19
25
|
Capybara/RedundantWithinFind: # new in 2.20
|
|
20
26
|
Enabled: true
|
|
21
27
|
Capybara/SpecificActions: # new in 2.14
|
|
@@ -23,9 +29,13 @@ Capybara/SpecificActions: # new in 2.14
|
|
|
23
29
|
Capybara/SpecificMatcher: # new in 2.12
|
|
24
30
|
Enabled: true
|
|
25
31
|
|
|
32
|
+
# https://docs.rubocop.org/rubocop-capybara/cops_capybara_rspec.html
|
|
33
|
+
|
|
26
34
|
Capybara/RSpec/HaveSelector: # new in 2.19
|
|
27
35
|
Enabled: true
|
|
28
36
|
|
|
37
|
+
# https://docs.rubocop.org/rubocop-factory_bot/cops_factory_bot.html
|
|
38
|
+
|
|
29
39
|
FactoryBot/AssociationStyle: # new in 2.23
|
|
30
40
|
Enabled: true
|
|
31
41
|
FactoryBot/ExcessiveCreateList: # new in 2.25
|
|
@@ -43,6 +53,8 @@ FactoryBot/RedundantFactoryOption: # new in 2.23
|
|
|
43
53
|
FactoryBot/SyntaxMethods: # new in 2.7
|
|
44
54
|
Enabled: true
|
|
45
55
|
|
|
56
|
+
# https://docs.rubocop.org/rubocop-rails/cops_rails.html
|
|
57
|
+
|
|
46
58
|
Rails/ActionControllerFlashBeforeRender: # new in 2.16
|
|
47
59
|
Enabled: true
|
|
48
60
|
Rails/ActionControllerTestCase: # new in 2.14
|
|
@@ -83,8 +95,12 @@ Rails/ExpandedDateRange: # new in 2.11
|
|
|
83
95
|
Enabled: true
|
|
84
96
|
Rails/FindById: # new in 2.7
|
|
85
97
|
Enabled: true
|
|
98
|
+
Rails/FindByOrAssignmentMemoization: # new in 2.33
|
|
99
|
+
Enabled: true
|
|
86
100
|
Rails/FreezeTime: # new in 2.16
|
|
87
101
|
Enabled: true
|
|
102
|
+
Rails/HttpStatusNameConsistency: # new in 2.34
|
|
103
|
+
Enabled: true
|
|
88
104
|
Rails/IgnoredColumnsAssignment: # new in 2.17
|
|
89
105
|
Enabled: true
|
|
90
106
|
Rails/I18nLazyLookup: # new in 2.14
|
|
@@ -103,10 +119,14 @@ Rails/MultipleRoutePaths: # new in 2.29
|
|
|
103
119
|
Enabled: true
|
|
104
120
|
Rails/NegateInclude: # new in 2.7
|
|
105
121
|
Enabled: true
|
|
122
|
+
Rails/OrderArguments: # new in 2.33
|
|
123
|
+
Enabled: true
|
|
106
124
|
Rails/Output:
|
|
107
125
|
Enabled: true
|
|
108
126
|
Rails/Pluck: # new in 2.7
|
|
109
127
|
Enabled: true
|
|
128
|
+
Rails/RedirectBackOrTo: # new in 2.34
|
|
129
|
+
Enabled: true
|
|
110
130
|
Rails/RedundantActiveRecordAllMethod: # new in 2.21
|
|
111
131
|
Enabled: true
|
|
112
132
|
Rails/RedundantPresenceValidationOnBelongsTo: # new in 2.13
|
|
@@ -156,6 +176,8 @@ Rails/WhereNotWithMultipleConditions: # new in 2.17
|
|
|
156
176
|
Rails/WhereRange: # new in 2.25
|
|
157
177
|
Enabled: true
|
|
158
178
|
|
|
179
|
+
# https://docs.rubocop.org/rubocop-rspec_rails/cops_rspecrails.html
|
|
180
|
+
|
|
159
181
|
RSpecRails/AvoidSetupHook: # new in 2.4
|
|
160
182
|
Enabled: true
|
|
161
183
|
RSpecRails/HaveHttpStatus: # new in 2.12
|
data/.rubocop-defaults-rspec.yml
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
plugins:
|
|
2
2
|
- rubocop-rspec
|
|
3
3
|
|
|
4
|
+
# https://docs.rubocop.org/rubocop-rspec/cops_rspec.html
|
|
5
|
+
|
|
4
6
|
RSpec/BeEmpty: # new in 2.20
|
|
5
7
|
Enabled: true
|
|
6
8
|
RSpec/BeEq: # new in 2.9.0
|
|
@@ -23,8 +25,12 @@ RSpec/ExcessiveDocstringSpacing: # new in 2.5
|
|
|
23
25
|
Enabled: true
|
|
24
26
|
RSpec/IdenticalEqualityAssertion: # new in 2.4
|
|
25
27
|
Enabled: true
|
|
28
|
+
RSpec/IncludeExamples: # new in 3.6
|
|
29
|
+
Enabled: true
|
|
26
30
|
RSpec/IndexedLet: # new in 2.20
|
|
27
31
|
Enabled: true
|
|
32
|
+
RSpec/LeakyLocalVariable: # new in 3.8
|
|
33
|
+
Enabled: true
|
|
28
34
|
RSpec/MatchArray: # new in 2.19
|
|
29
35
|
Enabled: true
|
|
30
36
|
RSpec/MetadataStyle: # new in 2.24
|
data/.rubocop-defaults.yml
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
plugins:
|
|
2
|
-
- rubocop-performance
|
|
3
|
-
- rubocop-rake
|
|
2
|
+
- rubocop-performance # https://docs.rubocop.org/rubocop-performance/cops_performance.html
|
|
3
|
+
- rubocop-rake # https://docs.rubocop.org/rubocop-rake/cops_rake.html
|
|
4
|
+
|
|
5
|
+
# https://docs.rubocop.org/rubocop/cops_gemspec.html
|
|
4
6
|
|
|
5
7
|
Gemspec/AddRuntimeDependency: # new in 1.65
|
|
6
8
|
Enabled: true
|
|
9
|
+
Gemspec/AttributeAssignment: # new in 1.77
|
|
10
|
+
Enabled: true
|
|
7
11
|
Gemspec/DeprecatedAttributeAssignment: # new in 1.30
|
|
8
12
|
Enabled: true
|
|
9
13
|
Gemspec/DevelopmentDependencies: # new in 1.44
|
|
@@ -11,8 +15,12 @@ Gemspec/DevelopmentDependencies: # new in 1.44
|
|
|
11
15
|
Gemspec/RequireMFA: # new in 1.23
|
|
12
16
|
Enabled: true
|
|
13
17
|
|
|
18
|
+
# https://docs.rubocop.org/rubocop/cops_layout.html
|
|
19
|
+
|
|
14
20
|
Layout/ElseAlignment:
|
|
15
21
|
Enabled: true
|
|
22
|
+
Layout/EmptyLinesAfterModuleInclusion: # new in 1.79
|
|
23
|
+
Enabled: true
|
|
16
24
|
Layout/LineContinuationLeadingSpace: # new in 1.31
|
|
17
25
|
Enabled: true
|
|
18
26
|
Layout/LineContinuationSpacing: # new in 1.31
|
|
@@ -22,6 +30,8 @@ Layout/LineEndStringConcatenationIndentation: # new in 1.18
|
|
|
22
30
|
Layout/SpaceBeforeBrackets: # new in 1.7
|
|
23
31
|
Enabled: true
|
|
24
32
|
|
|
33
|
+
# https://docs.rubocop.org/rubocop/cops_lint.html
|
|
34
|
+
|
|
25
35
|
Lint/AmbiguousAssignment: # new in 1.7
|
|
26
36
|
Enabled: true
|
|
27
37
|
Lint/AmbiguousOperatorPrecedence: # new in 1.21
|
|
@@ -110,14 +120,27 @@ Lint/UselessDefined: # new in 1.69
|
|
|
110
120
|
Enabled: true
|
|
111
121
|
Lint/UselessNumericOperation: # new in 1.66
|
|
112
122
|
Enabled: true
|
|
123
|
+
Lint/UselessOr: # new in 1.76
|
|
124
|
+
Enabled: true
|
|
125
|
+
Lint/UselessDefaultValueArgument: # new in 1.76
|
|
126
|
+
Enabled: true
|
|
113
127
|
Lint/UselessRescue: # new in 1.43
|
|
114
128
|
Enabled: true
|
|
115
129
|
Lint/UselessRuby2Keywords: # new in 1.23
|
|
116
130
|
Enabled: true
|
|
117
131
|
|
|
132
|
+
# https://docs.rubocop.org/rubocop/cops_metrics.html
|
|
133
|
+
|
|
118
134
|
Metrics/CollectionLiteralLength: # new in 1.47
|
|
119
135
|
Enabled: true
|
|
120
136
|
|
|
137
|
+
# https://docs.rubocop.org/rubocop/cops_naming.html
|
|
138
|
+
|
|
139
|
+
Naming/PredicateMethod: # new in 1.76
|
|
140
|
+
Enabled: true
|
|
141
|
+
|
|
142
|
+
# https://docs.rubocop.org/rubocop-performance/cops_performance.html
|
|
143
|
+
|
|
121
144
|
Performance/AncestorsInclude: # new in 1.7
|
|
122
145
|
Enabled: true
|
|
123
146
|
Performance/BlockGivenWithExplicitBlock: # new in 1.9
|
|
@@ -159,21 +182,31 @@ Performance/Sum: # new in 1.8
|
|
|
159
182
|
Performance/ZipWithoutBlock: # new in 1.24
|
|
160
183
|
Enabled: true
|
|
161
184
|
|
|
185
|
+
# https://docs.rubocop.org/rubocop/cops_security.html
|
|
186
|
+
|
|
162
187
|
Security/CompoundHash: # new in 1.28
|
|
163
188
|
Enabled: true
|
|
164
189
|
Security/IoMethods: # new in 1.22
|
|
165
190
|
Enabled: true
|
|
166
191
|
|
|
192
|
+
# https://docs.rubocop.org/rubocop/cops_style.html
|
|
193
|
+
|
|
167
194
|
Style/AmbiguousEndlessMethodDefinition: # new in 1.68
|
|
168
195
|
Enabled: true
|
|
169
196
|
Style/ArgumentsForwarding: # new in 1.1
|
|
170
197
|
Enabled: true
|
|
171
198
|
Style/ArrayIntersect: # new in 1.40
|
|
172
199
|
Enabled: true
|
|
200
|
+
Style/ArrayIntersectWithSingleElement: # new in 1.81
|
|
201
|
+
Enabled: true
|
|
173
202
|
Style/BitwisePredicate: # new in 1.68
|
|
174
203
|
Enabled: true
|
|
175
204
|
Style/CollectionCompact: # new in 1.2
|
|
176
205
|
Enabled: true
|
|
206
|
+
Style/CollectionQuerying: # new in 1.77
|
|
207
|
+
Enabled: true
|
|
208
|
+
Style/ComparableBetween: # new in 1.74
|
|
209
|
+
Enabled: true
|
|
177
210
|
Style/CombinableDefined: # new in 1.68
|
|
178
211
|
Enabled: true
|
|
179
212
|
Style/ComparableClamp: # new in 1.44
|
|
@@ -190,6 +223,8 @@ Style/DocumentDynamicEvalDefinition: # new in 1.1
|
|
|
190
223
|
Enabled: true
|
|
191
224
|
Style/EmptyHeredoc: # new in 1.32
|
|
192
225
|
Enabled: true
|
|
226
|
+
Style/EmptyStringInsideInterpolation: # new in 1.76
|
|
227
|
+
Enabled: true
|
|
193
228
|
Style/EnvHome: # new in 1.29
|
|
194
229
|
Enabled: true
|
|
195
230
|
Style/FetchEnvVar: # new in 1.28
|
|
@@ -210,6 +245,8 @@ Style/HashConversion: # new in 1.10
|
|
|
210
245
|
Enabled: true
|
|
211
246
|
Style/HashExcept: # new in 1.7
|
|
212
247
|
Enabled: true
|
|
248
|
+
Style/HashFetchChain: # new in 1.75
|
|
249
|
+
Enabled: true
|
|
213
250
|
Style/HashSlice: # new in 1.71
|
|
214
251
|
Enabled: true
|
|
215
252
|
Style/IfWithBooleanLiteralBranches: # new in 1.9
|
|
@@ -218,6 +255,8 @@ Style/InPatternThen: # new in 1.16
|
|
|
218
255
|
Enabled: true
|
|
219
256
|
Style/ItAssignment: # new in 1.70
|
|
220
257
|
Enabled: true
|
|
258
|
+
Style/ItBlockParameter: # new in 1.75
|
|
259
|
+
Enabled: true
|
|
221
260
|
Style/KeywordArgumentsMerging: # new in 1.68
|
|
222
261
|
Enabled: true
|
|
223
262
|
Style/MagicCommentFormat: # new in 1.35
|
|
@@ -232,6 +271,8 @@ Style/MapToSet: # new in 1.42
|
|
|
232
271
|
Enabled: true
|
|
233
272
|
Style/MinMaxComparison: # new in 1.42
|
|
234
273
|
Enabled: true
|
|
274
|
+
Style/ModuleMemberExistenceCheck: # new in 1.82
|
|
275
|
+
Enabled: true
|
|
235
276
|
Style/MultilineInPatternThen: # new in 1.16
|
|
236
277
|
Enabled: true
|
|
237
278
|
Style/NegatedIfElseCondition: # new in 1.2
|
|
@@ -252,6 +293,8 @@ Style/RedundantArgument: # new in 1.4
|
|
|
252
293
|
Enabled: true
|
|
253
294
|
Style/RedundantArrayConstructor: # new in 1.52
|
|
254
295
|
Enabled: true
|
|
296
|
+
Style/RedundantArrayFlatten: # new in 1.76
|
|
297
|
+
Enabled: true
|
|
255
298
|
Style/RedundantConstantBase: # new in 1.40
|
|
256
299
|
Enabled: true
|
|
257
300
|
Style/RedundantCurrentDirectoryInPath: # new in 1.53
|
data/.yoshiki-ruby.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,79 +1,84 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
yoshiki (10.
|
|
5
|
-
rubocop (= 1.
|
|
6
|
-
rubocop-capybara (= 2.
|
|
7
|
-
rubocop-factory_bot (= 2.
|
|
8
|
-
rubocop-performance (= 1.
|
|
9
|
-
rubocop-rails (= 2.
|
|
4
|
+
yoshiki (10.1.0)
|
|
5
|
+
rubocop (= 1.82.1)
|
|
6
|
+
rubocop-capybara (= 2.22.1)
|
|
7
|
+
rubocop-factory_bot (= 2.28.0)
|
|
8
|
+
rubocop-performance (= 1.26.1)
|
|
9
|
+
rubocop-rails (= 2.34.3)
|
|
10
10
|
rubocop-rake (= 0.7.1)
|
|
11
|
-
rubocop-rspec (= 3.
|
|
12
|
-
rubocop-rspec_rails (= 2.
|
|
11
|
+
rubocop-rspec (= 3.9.0)
|
|
12
|
+
rubocop-rspec_rails (= 2.32.0)
|
|
13
13
|
|
|
14
14
|
GEM
|
|
15
15
|
remote: https://rubygems.org/
|
|
16
16
|
specs:
|
|
17
|
-
activesupport (8.
|
|
17
|
+
activesupport (8.1.2)
|
|
18
18
|
base64
|
|
19
|
-
benchmark (>= 0.3)
|
|
20
19
|
bigdecimal
|
|
21
20
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
22
21
|
connection_pool (>= 2.2.5)
|
|
23
22
|
drb
|
|
24
23
|
i18n (>= 1.6, < 2)
|
|
24
|
+
json
|
|
25
25
|
logger (>= 1.4.2)
|
|
26
26
|
minitest (>= 5.1)
|
|
27
27
|
securerandom (>= 0.3)
|
|
28
28
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
29
29
|
uri (>= 0.13.1)
|
|
30
|
-
ast (2.4.
|
|
31
|
-
base64 (0.
|
|
32
|
-
|
|
33
|
-
bigdecimal (3.1.9)
|
|
30
|
+
ast (2.4.3)
|
|
31
|
+
base64 (0.3.0)
|
|
32
|
+
bigdecimal (4.0.1)
|
|
34
33
|
coderay (1.1.3)
|
|
35
|
-
concurrent-ruby (1.3.
|
|
36
|
-
connection_pool (
|
|
37
|
-
date (3.
|
|
38
|
-
diff-lcs (1.
|
|
39
|
-
drb (2.2.
|
|
40
|
-
i18n (1.14.
|
|
34
|
+
concurrent-ruby (1.3.6)
|
|
35
|
+
connection_pool (3.0.2)
|
|
36
|
+
date (3.5.1)
|
|
37
|
+
diff-lcs (1.6.2)
|
|
38
|
+
drb (2.2.3)
|
|
39
|
+
i18n (1.14.8)
|
|
41
40
|
concurrent-ruby (~> 1.0)
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
io-console (0.8.2)
|
|
42
|
+
json (2.18.0)
|
|
43
|
+
language_server-protocol (3.17.0.5)
|
|
44
44
|
lint_roller (1.1.0)
|
|
45
|
-
logger (1.
|
|
45
|
+
logger (1.7.0)
|
|
46
46
|
method_source (1.1.0)
|
|
47
|
-
minitest (
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
minitest (6.0.1)
|
|
48
|
+
prism (~> 1.5)
|
|
49
|
+
parallel (1.27.0)
|
|
50
|
+
parser (3.3.10.1)
|
|
50
51
|
ast (~> 2.4.1)
|
|
51
52
|
racc
|
|
52
|
-
|
|
53
|
+
prism (1.8.0)
|
|
54
|
+
pry (0.16.0)
|
|
53
55
|
coderay (~> 1.1)
|
|
54
56
|
method_source (~> 1.0)
|
|
55
|
-
|
|
57
|
+
reline (>= 0.6.0)
|
|
58
|
+
psych (5.3.1)
|
|
56
59
|
date
|
|
57
60
|
stringio
|
|
58
61
|
racc (1.8.1)
|
|
59
|
-
rack (3.
|
|
62
|
+
rack (3.2.4)
|
|
60
63
|
rainbow (3.1.1)
|
|
61
|
-
rake (13.
|
|
62
|
-
regexp_parser (2.
|
|
63
|
-
|
|
64
|
+
rake (13.3.1)
|
|
65
|
+
regexp_parser (2.11.3)
|
|
66
|
+
reline (0.6.3)
|
|
67
|
+
io-console (~> 0.5)
|
|
68
|
+
rspec (3.13.2)
|
|
64
69
|
rspec-core (~> 3.13.0)
|
|
65
70
|
rspec-expectations (~> 3.13.0)
|
|
66
71
|
rspec-mocks (~> 3.13.0)
|
|
67
|
-
rspec-core (3.13.
|
|
72
|
+
rspec-core (3.13.6)
|
|
68
73
|
rspec-support (~> 3.13.0)
|
|
69
|
-
rspec-expectations (3.13.
|
|
74
|
+
rspec-expectations (3.13.5)
|
|
70
75
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
71
76
|
rspec-support (~> 3.13.0)
|
|
72
|
-
rspec-mocks (3.13.
|
|
77
|
+
rspec-mocks (3.13.7)
|
|
73
78
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
74
79
|
rspec-support (~> 3.13.0)
|
|
75
|
-
rspec-support (3.13.
|
|
76
|
-
rubocop (1.
|
|
80
|
+
rspec-support (3.13.6)
|
|
81
|
+
rubocop (1.82.1)
|
|
77
82
|
json (~> 2.3)
|
|
78
83
|
language_server-protocol (~> 3.17.0.2)
|
|
79
84
|
lint_roller (~> 1.1.0)
|
|
@@ -81,43 +86,47 @@ GEM
|
|
|
81
86
|
parser (>= 3.3.0.2)
|
|
82
87
|
rainbow (>= 2.2.2, < 4.0)
|
|
83
88
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
84
|
-
rubocop-ast (>= 1.
|
|
89
|
+
rubocop-ast (>= 1.48.0, < 2.0)
|
|
85
90
|
ruby-progressbar (~> 1.7)
|
|
86
91
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
87
|
-
rubocop-ast (1.
|
|
88
|
-
parser (>= 3.3.
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
rubocop-factory_bot (2.26.1)
|
|
92
|
-
rubocop (~> 1.61)
|
|
93
|
-
rubocop-performance (1.24.0)
|
|
92
|
+
rubocop-ast (1.49.0)
|
|
93
|
+
parser (>= 3.3.7.2)
|
|
94
|
+
prism (~> 1.7)
|
|
95
|
+
rubocop-capybara (2.22.1)
|
|
94
96
|
lint_roller (~> 1.1)
|
|
95
|
-
rubocop (
|
|
96
|
-
|
|
97
|
-
|
|
97
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
98
|
+
rubocop-factory_bot (2.28.0)
|
|
99
|
+
lint_roller (~> 1.1)
|
|
100
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
101
|
+
rubocop-performance (1.26.1)
|
|
102
|
+
lint_roller (~> 1.1)
|
|
103
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
104
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
105
|
+
rubocop-rails (2.34.3)
|
|
98
106
|
activesupport (>= 4.2.0)
|
|
99
107
|
lint_roller (~> 1.1)
|
|
100
108
|
rack (>= 1.1)
|
|
101
|
-
rubocop (>= 1.
|
|
102
|
-
rubocop-ast (>= 1.
|
|
109
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
110
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
103
111
|
rubocop-rake (0.7.1)
|
|
104
112
|
lint_roller (~> 1.1)
|
|
105
113
|
rubocop (>= 1.72.1)
|
|
106
|
-
rubocop-rspec (3.
|
|
114
|
+
rubocop-rspec (3.9.0)
|
|
115
|
+
lint_roller (~> 1.1)
|
|
116
|
+
rubocop (~> 1.81)
|
|
117
|
+
rubocop-rspec_rails (2.32.0)
|
|
107
118
|
lint_roller (~> 1.1)
|
|
108
119
|
rubocop (~> 1.72, >= 1.72.1)
|
|
109
|
-
|
|
110
|
-
rubocop (~> 1.61)
|
|
111
|
-
rubocop-rspec (~> 3, >= 3.0.1)
|
|
120
|
+
rubocop-rspec (~> 3.5)
|
|
112
121
|
ruby-progressbar (1.13.0)
|
|
113
122
|
securerandom (0.4.1)
|
|
114
|
-
stringio (3.
|
|
123
|
+
stringio (3.2.0)
|
|
115
124
|
tzinfo (2.0.6)
|
|
116
125
|
concurrent-ruby (~> 1.0)
|
|
117
|
-
unicode-display_width (3.
|
|
118
|
-
unicode-emoji (~> 4.
|
|
119
|
-
unicode-emoji (4.0
|
|
120
|
-
uri (1.
|
|
126
|
+
unicode-display_width (3.2.0)
|
|
127
|
+
unicode-emoji (~> 4.1)
|
|
128
|
+
unicode-emoji (4.2.0)
|
|
129
|
+
uri (1.1.1)
|
|
121
130
|
|
|
122
131
|
PLATFORMS
|
|
123
132
|
arm64-darwin-24
|
data/README.md
CHANGED
|
@@ -45,6 +45,7 @@ inherit_gem:
|
|
|
45
45
|
|
|
46
46
|
## Ruby compatibility
|
|
47
47
|
|
|
48
|
+
- ruby 4.0+, use [~> 10.1][10.1]
|
|
48
49
|
- ruby 3.4+, use [~> 10.0][10.0]
|
|
49
50
|
- ruby 3.0+, use [~> 9.0][9.0]
|
|
50
51
|
- ruby 2.7, use [~> 8.0][8.0]
|
|
@@ -60,7 +61,8 @@ inherit_gem:
|
|
|
60
61
|
[7.0]: https://gitlab.com/devfu/yoshiki/tags/v7.0.0
|
|
61
62
|
[8.0]: https://gitlab.com/devfu/yoshiki/tags/v8.0.0
|
|
62
63
|
[9.0]: https://gitlab.com/devfu/yoshiki/tags/v9.0.0
|
|
63
|
-
[
|
|
64
|
+
[10.0]: https://gitlab.com/devfu/yoshiki/tags/v10.0.0
|
|
65
|
+
[10.1]: https://gitlab.com/devfu/yoshiki/tags/v10.1.0
|
|
64
66
|
|
|
65
67
|
<!-- images -->
|
|
66
68
|
[ci-image]: https://gitlab.com/devfu/yoshiki/badges/master/pipeline.svg
|
data/lib/yoshiki/version.rb
CHANGED
data/yoshiki.gemspec
CHANGED
|
@@ -20,12 +20,12 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
|
|
21
21
|
spec.required_ruby_version = '>= 3.4.0'
|
|
22
22
|
|
|
23
|
-
spec.add_dependency 'rubocop', '1.
|
|
24
|
-
spec.add_dependency 'rubocop-capybara', '2.
|
|
25
|
-
spec.add_dependency 'rubocop-factory_bot', '2.
|
|
26
|
-
spec.add_dependency 'rubocop-performance', '1.
|
|
27
|
-
spec.add_dependency 'rubocop-rails', '2.
|
|
23
|
+
spec.add_dependency 'rubocop', '1.82.1'
|
|
24
|
+
spec.add_dependency 'rubocop-capybara', '2.22.1'
|
|
25
|
+
spec.add_dependency 'rubocop-factory_bot', '2.28.0'
|
|
26
|
+
spec.add_dependency 'rubocop-performance', '1.26.1'
|
|
27
|
+
spec.add_dependency 'rubocop-rails', '2.34.3'
|
|
28
28
|
spec.add_dependency 'rubocop-rake', '0.7.1'
|
|
29
|
-
spec.add_dependency 'rubocop-rspec', '3.
|
|
30
|
-
spec.add_dependency 'rubocop-rspec_rails', '2.
|
|
29
|
+
spec.add_dependency 'rubocop-rspec', '3.9.0'
|
|
30
|
+
spec.add_dependency 'rubocop-rspec_rails', '2.32.0'
|
|
31
31
|
end
|
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.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- BM5k
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-01-16 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: rubocop
|
|
@@ -15,70 +15,70 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 1.
|
|
18
|
+
version: 1.82.1
|
|
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.82.1
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: rubocop-capybara
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
30
|
- - '='
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 2.
|
|
32
|
+
version: 2.22.1
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - '='
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 2.
|
|
39
|
+
version: 2.22.1
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: rubocop-factory_bot
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
44
|
- - '='
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 2.
|
|
46
|
+
version: 2.28.0
|
|
47
47
|
type: :runtime
|
|
48
48
|
prerelease: false
|
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
51
|
- - '='
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: 2.
|
|
53
|
+
version: 2.28.0
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: rubocop-performance
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
58
|
- - '='
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 1.
|
|
60
|
+
version: 1.26.1
|
|
61
61
|
type: :runtime
|
|
62
62
|
prerelease: false
|
|
63
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
64
|
requirements:
|
|
65
65
|
- - '='
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 1.
|
|
67
|
+
version: 1.26.1
|
|
68
68
|
- !ruby/object:Gem::Dependency
|
|
69
69
|
name: rubocop-rails
|
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - '='
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: 2.
|
|
74
|
+
version: 2.34.3
|
|
75
75
|
type: :runtime
|
|
76
76
|
prerelease: false
|
|
77
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
78
78
|
requirements:
|
|
79
79
|
- - '='
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: 2.
|
|
81
|
+
version: 2.34.3
|
|
82
82
|
- !ruby/object:Gem::Dependency
|
|
83
83
|
name: rubocop-rake
|
|
84
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -99,28 +99,28 @@ dependencies:
|
|
|
99
99
|
requirements:
|
|
100
100
|
- - '='
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: 3.
|
|
102
|
+
version: 3.9.0
|
|
103
103
|
type: :runtime
|
|
104
104
|
prerelease: false
|
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
107
107
|
- - '='
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: 3.
|
|
109
|
+
version: 3.9.0
|
|
110
110
|
- !ruby/object:Gem::Dependency
|
|
111
111
|
name: rubocop-rspec_rails
|
|
112
112
|
requirement: !ruby/object:Gem::Requirement
|
|
113
113
|
requirements:
|
|
114
114
|
- - '='
|
|
115
115
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: 2.
|
|
116
|
+
version: 2.32.0
|
|
117
117
|
type: :runtime
|
|
118
118
|
prerelease: false
|
|
119
119
|
version_requirements: !ruby/object:Gem::Requirement
|
|
120
120
|
requirements:
|
|
121
121
|
- - '='
|
|
122
122
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: 2.
|
|
123
|
+
version: 2.32.0
|
|
124
124
|
description: Dev Fu! Style for rubocop.
|
|
125
125
|
email:
|
|
126
126
|
- me@bm5k.com
|
|
@@ -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: 3.6.
|
|
173
|
+
rubygems_version: 3.6.6
|
|
174
174
|
specification_version: 4
|
|
175
175
|
summary: Dev Fu! Style
|
|
176
176
|
test_files: []
|