yoshiki 9.0.0.pre.5 → 9.0.0.pre.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop-defaults-rails.yml +4 -0
- data/.rubocop-defaults.yml +12 -0
- data/.yoshiki-rspec.yml +29 -0
- data/.yoshiki-ruby.yml +0 -31
- data/Gemfile.lock +15 -17
- data/lib/yoshiki/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6d6c021520471c78ede29b2fc2c6c9486a5bda5e9ce0be9476a8adaa6f5bc51
|
4
|
+
data.tar.gz: d1e7dd08fe75ab1c61f98d62b868a1aa855b7a13bba46ea74a2657e63e482ec1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cd329a315aaa9495fae9500a69ae9c69be9ba687552a8ac542edd961886b0af11fe206b975a53c81c97f6656c65ac12b00ecd98faea8610bd0e7aecd351c86e
|
7
|
+
data.tar.gz: c876fddc110ef753ab69546f0e5103c049dbac07c3873f1d82a000fafd0c1535af74836b6579c845b77b0686472079ce79c8f3a8309bd80be684cdd667f81e6d
|
data/.rubocop-defaults-rails.yml
CHANGED
@@ -39,6 +39,8 @@ Rails/EagerEvaluationLogMessage: # new in 2.11
|
|
39
39
|
Enabled: true
|
40
40
|
Rails/EnvLocal: # new in 2.22
|
41
41
|
Enabled: true
|
42
|
+
Rails/EnumSyntax: # new in 2.26
|
43
|
+
Enabled: true
|
42
44
|
Rails/ExpandedDateRange: # new in 2.11
|
43
45
|
Enabled: true
|
44
46
|
Rails/FindById: # new in 2.7
|
@@ -111,6 +113,8 @@ Rails/WhereNot: # new in 2.8
|
|
111
113
|
Enabled: true
|
112
114
|
Rails/WhereNotWithMultipleConditions: # new in 2.17
|
113
115
|
Enabled: true
|
116
|
+
Rails/WhereRange: # new in 2.25
|
117
|
+
Enabled: true
|
114
118
|
|
115
119
|
RSpecRails/AvoidSetupHook: # new in 2.4
|
116
120
|
Enabled: true
|
data/.rubocop-defaults.yml
CHANGED
@@ -35,6 +35,8 @@ FactoryBot/RedundantFactoryOption: # new in 2.23
|
|
35
35
|
FactoryBot/SyntaxMethods: # new in 2.7
|
36
36
|
Enabled: true
|
37
37
|
|
38
|
+
Gemspec/AddRuntimeDependency: # new in 1.65
|
39
|
+
Enabled: true
|
38
40
|
Gemspec/DeprecatedAttributeAssignment: # new in 1.30
|
39
41
|
Enabled: true
|
40
42
|
Gemspec/DevelopmentDependencies: # new in 1.44
|
@@ -115,6 +117,8 @@ Lint/UnexpectedBlockArity: # new in 1.5
|
|
115
117
|
Enabled: true
|
116
118
|
Lint/UnmodifiedReduceAccumulator: # new in 1.1
|
117
119
|
Enabled: true
|
120
|
+
Lint/UselessNumericOperation: # new in 1.66
|
121
|
+
Enabled: true
|
118
122
|
Lint/UselessRescue: # new in 1.43
|
119
123
|
Enabled: true
|
120
124
|
Lint/UselessRuby2Keywords: # new in 1.23
|
@@ -207,6 +211,8 @@ Style/MagicCommentFormat: # new in 1.35
|
|
207
211
|
Enabled: true
|
208
212
|
Style/MapCompactWithConditionalBlock: # new in 1.30
|
209
213
|
Enabled: true
|
214
|
+
Style/MapIntoArray: # new in 1.63
|
215
|
+
Enabled: true
|
210
216
|
Style/MapToHash: # new in 1.24
|
211
217
|
Enabled: true
|
212
218
|
Style/MapToSet: # new in 1.42
|
@@ -247,6 +253,8 @@ Style/RedundantHeredocDelimiterQuotes: # new in 1.45
|
|
247
253
|
Enabled: true
|
248
254
|
Style/RedundantInitialize: # new in 1.27
|
249
255
|
Enabled: true
|
256
|
+
Style/RedundantInterpolationUnfreeze: # new in 1.66
|
257
|
+
Enabled: true
|
250
258
|
Style/RedundantLineContinuation: # new in 1.49
|
251
259
|
Enabled: true
|
252
260
|
Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
|
@@ -259,12 +267,16 @@ Style/RedundantSelfAssignmentBranch: # new in 1.19
|
|
259
267
|
Enabled: true
|
260
268
|
Style/RedundantStringEscape: # new in 1.37
|
261
269
|
Enabled: true
|
270
|
+
Style/SendWithLiteralMethodName: # new in 1.64
|
271
|
+
Enabled: true
|
262
272
|
Style/SelectByRegexp: # new in 1.22
|
263
273
|
Enabled: true
|
264
274
|
Style/SingleLineDoEndBlock: # new in 1.57
|
265
275
|
Enabled: true
|
266
276
|
Style/StringChars: # new in 1.12
|
267
277
|
Enabled: true
|
278
|
+
Style/SuperArguments: # new in 1.64
|
279
|
+
Enabled: true
|
268
280
|
Style/SuperWithArgsParentheses: # new in 1.58
|
269
281
|
Enabled: false
|
270
282
|
Style/SwapValues: # new in 1.1
|
data/.yoshiki-rspec.yml
CHANGED
@@ -5,5 +5,34 @@ inherit_mode:
|
|
5
5
|
merge:
|
6
6
|
- Exclude
|
7
7
|
|
8
|
+
RSpec/ContextWording:
|
9
|
+
Prefixes:
|
10
|
+
- as a
|
11
|
+
- for
|
12
|
+
- if
|
13
|
+
- unless
|
14
|
+
- when
|
15
|
+
- with
|
16
|
+
- without
|
17
|
+
RSpec/ImplicitExpect:
|
18
|
+
EnforcedStyle: should
|
19
|
+
RSpec/ImplicitSubject:
|
20
|
+
EnforcedStyle: single_statement_only # default is `single_line_only`
|
21
|
+
Exclude:
|
22
|
+
- spec/system/**/*.rb # allow implicit subject in system specs
|
23
|
+
RSpec/LeadingSubject:
|
24
|
+
Enabled: false # prefer subject after all let and let!
|
25
|
+
RSpec/NestedGroups: # this cop can be configured with `AllowedGroups`
|
26
|
+
Enabled: false
|
27
|
+
RSpec/PendingWithoutReason: # new in 2.16
|
28
|
+
Enabled: false
|
29
|
+
RSpec/NoExpectationExample: # new in 2.13
|
30
|
+
Enabled: false
|
31
|
+
RSpec/NotToNot:
|
32
|
+
EnforcedStyle: to_not # default is not_to; prefer common prefix
|
33
|
+
RSpec/MultipleExpectations:
|
34
|
+
Enabled: false # recommend using `aggregate_failures`
|
35
|
+
RSpec/SubjectStub: # allow stubbing subject
|
36
|
+
Enabled: false # should only be used for methods *not* under test
|
8
37
|
RSpec/StringAsInstanceDoubleConstant: # new in 3.1; already deprecated
|
9
38
|
Enabled: false
|
data/.yoshiki-ruby.yml
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
require:
|
2
2
|
- rubocop-rake
|
3
|
-
- rubocop-rspec
|
4
3
|
|
5
4
|
AllCops:
|
6
5
|
DisplayCopNames: true
|
@@ -121,36 +120,6 @@ Performance/CaseWhenSplat:
|
|
121
120
|
Performance/SelectMap:
|
122
121
|
Enabled: true
|
123
122
|
|
124
|
-
RSpec/ContextWording:
|
125
|
-
Prefixes:
|
126
|
-
- as a
|
127
|
-
- for
|
128
|
-
- if
|
129
|
-
- unless
|
130
|
-
- when
|
131
|
-
- with
|
132
|
-
- without
|
133
|
-
RSpec/ImplicitExpect:
|
134
|
-
EnforcedStyle: should
|
135
|
-
RSpec/ImplicitSubject:
|
136
|
-
EnforcedStyle: single_statement_only # default is `single_line_only`
|
137
|
-
Exclude:
|
138
|
-
- spec/system/**/*.rb # allow implicit subject in system specs
|
139
|
-
RSpec/LeadingSubject:
|
140
|
-
Enabled: false # prefer subject after all let and let!
|
141
|
-
RSpec/NestedGroups: # this cop can be configured with `AllowedGroups`
|
142
|
-
Enabled: false
|
143
|
-
RSpec/PendingWithoutReason: # new in 2.16
|
144
|
-
Enabled: false
|
145
|
-
RSpec/NoExpectationExample: # new in 2.13
|
146
|
-
Enabled: false
|
147
|
-
RSpec/NotToNot:
|
148
|
-
EnforcedStyle: to_not # default is not_to; prefer common prefix
|
149
|
-
RSpec/MultipleExpectations:
|
150
|
-
Enabled: false # recommend using `aggregate_failures`
|
151
|
-
RSpec/SubjectStub: # allow stubbing subject
|
152
|
-
Enabled: false # should only be used for methods *not* under test
|
153
|
-
|
154
123
|
Style/AndOr:
|
155
124
|
Enabled: false
|
156
125
|
Style/AsciiComments:
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
yoshiki (9.0.0.pre.
|
4
|
+
yoshiki (9.0.0.pre.7)
|
5
5
|
rubocop (>= 1.56.4)
|
6
6
|
rubocop-capybara (>= 2.19.0)
|
7
7
|
rubocop-factory_bot (>= 2.24.0)
|
@@ -41,7 +41,7 @@ GEM
|
|
41
41
|
minitest (5.21.2)
|
42
42
|
mutex_m (0.2.0)
|
43
43
|
parallel (1.24.0)
|
44
|
-
parser (3.3.0
|
44
|
+
parser (3.3.5.0)
|
45
45
|
ast (~> 2.4.1)
|
46
46
|
racc
|
47
47
|
pry (0.14.2)
|
@@ -54,7 +54,6 @@ GEM
|
|
54
54
|
rainbow (3.1.1)
|
55
55
|
rake (13.1.0)
|
56
56
|
regexp_parser (2.9.0)
|
57
|
-
rexml (3.2.6)
|
58
57
|
rspec (3.12.0)
|
59
58
|
rspec-core (~> 3.12.0)
|
60
59
|
rspec-expectations (~> 3.12.0)
|
@@ -68,31 +67,30 @@ GEM
|
|
68
67
|
diff-lcs (>= 1.2.0, < 2.0)
|
69
68
|
rspec-support (~> 3.12.0)
|
70
69
|
rspec-support (3.12.1)
|
71
|
-
rubocop (1.
|
70
|
+
rubocop (1.66.1)
|
72
71
|
json (~> 2.3)
|
73
72
|
language_server-protocol (>= 3.17.0)
|
74
73
|
parallel (~> 1.10)
|
75
74
|
parser (>= 3.3.0.2)
|
76
75
|
rainbow (>= 2.2.2, < 4.0)
|
77
|
-
regexp_parser (>=
|
78
|
-
|
79
|
-
rubocop-ast (>= 1.30.0, < 2.0)
|
76
|
+
regexp_parser (>= 2.4, < 3.0)
|
77
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
80
78
|
ruby-progressbar (~> 1.7)
|
81
79
|
unicode-display_width (>= 2.4.0, < 3.0)
|
82
|
-
rubocop-ast (1.
|
83
|
-
parser (>= 3.
|
84
|
-
rubocop-capybara (2.
|
80
|
+
rubocop-ast (1.32.3)
|
81
|
+
parser (>= 3.3.1.0)
|
82
|
+
rubocop-capybara (2.21.0)
|
85
83
|
rubocop (~> 1.41)
|
86
|
-
rubocop-factory_bot (2.
|
87
|
-
rubocop (~> 1.
|
88
|
-
rubocop-performance (1.
|
84
|
+
rubocop-factory_bot (2.26.1)
|
85
|
+
rubocop (~> 1.61)
|
86
|
+
rubocop-performance (1.22.1)
|
89
87
|
rubocop (>= 1.48.1, < 2.0)
|
90
|
-
rubocop-ast (>= 1.
|
91
|
-
rubocop-rails (2.
|
88
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
89
|
+
rubocop-rails (2.26.2)
|
92
90
|
activesupport (>= 4.2.0)
|
93
91
|
rack (>= 1.1)
|
94
|
-
rubocop (>= 1.
|
95
|
-
rubocop-ast (>= 1.
|
92
|
+
rubocop (>= 1.52.0, < 2.0)
|
93
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
96
94
|
rubocop-rake (0.6.0)
|
97
95
|
rubocop (~> 1.0)
|
98
96
|
rubocop-rspec (3.1.0)
|
data/lib/yoshiki/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yoshiki
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.0.0.pre.
|
4
|
+
version: 9.0.0.pre.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BM5k
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|