yoshiki 8.0.0 → 9.0.0.pre.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +10 -10
- data/.rubocop-defaults-rails.yml +2 -0
- data/.rubocop-defaults.yml +64 -0
- data/.rubocop.yml +3 -7
- data/.yoshiki-rails.yml +22 -2
- data/.yoshiki-ruby.yml +15 -5
- data/Gemfile.lock +47 -30
- data/README.md +9 -10
- data/lib/yoshiki/version.rb +1 -1
- data/yoshiki.gemspec +8 -5
- metadata +60 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 238a39575bd073ca95cdaa54ce97affac2d5d57b9763d25cddabefb93f312235
|
4
|
+
data.tar.gz: 487696c57ffc297c083b55343daccccbf976c49901a94f75b4da87b9f7049947
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed0fc7a3cecfca13a9d5ccd1697abd4edb5e82889a4a2b68e3285ae8cd7a4e4563c6994c1b2431e7899e083cbcb3fbd158abc61d771d83631efa479d7430ba0a
|
7
|
+
data.tar.gz: 04ae7dc9a3d18bae3de6ae33c4614c71874b961c43bef6c8db041afc73460fdb68edd76e33c573b8cd2802f3bc17d46b54161ca00bdd75b6d97aa71d0c75464e
|
data/.gitlab-ci.yml
CHANGED
@@ -7,6 +7,16 @@ before_script:
|
|
7
7
|
- gem update bundler
|
8
8
|
- bundle install --clean --jobs $(nproc) --retry=3
|
9
9
|
|
10
|
+
ruby 3.3:
|
11
|
+
cache:
|
12
|
+
key: "$CI_BUILD_REF_NAME-3.3"
|
13
|
+
paths:
|
14
|
+
- vendor/bundle
|
15
|
+
image: ruby:3.3-alpine
|
16
|
+
script:
|
17
|
+
- bundle exec rake spec rubocop
|
18
|
+
stage: test
|
19
|
+
|
10
20
|
ruby 3.2:
|
11
21
|
cache:
|
12
22
|
key: "$CI_BUILD_REF_NAME-3.2"
|
@@ -36,13 +46,3 @@ ruby 3.0:
|
|
36
46
|
script:
|
37
47
|
- bundle exec rake spec rubocop
|
38
48
|
stage: test
|
39
|
-
|
40
|
-
ruby 2.7:
|
41
|
-
cache:
|
42
|
-
key: "$CI_BUILD_REF_NAME-2.7"
|
43
|
-
paths:
|
44
|
-
- vendor/bundle
|
45
|
-
image: ruby:2.7-alpine
|
46
|
-
script:
|
47
|
-
- bundle exec rake spec rubocop
|
48
|
-
stage: test
|
data/.rubocop-defaults-rails.yml
CHANGED
@@ -36,6 +36,8 @@ Rails/DurationArithmetic: # new in 2.13
|
|
36
36
|
Enabled: true
|
37
37
|
Rails/EagerEvaluationLogMessage: # new in 2.11
|
38
38
|
Enabled: true
|
39
|
+
Rails/EnvLocal: # new in 2.22
|
40
|
+
Enabled: true
|
39
41
|
Rails/ExpandedDateRange: # new in 2.11
|
40
42
|
Enabled: true
|
41
43
|
Rails/FindById: # new in 2.7
|
data/.rubocop-defaults.yml
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
require:
|
2
|
+
- rubocop-capybara
|
3
|
+
- rubocop-factory_bot
|
4
|
+
- rubocop-performance
|
2
5
|
- rubocop-rake
|
3
6
|
- rubocop-rspec
|
4
7
|
|
@@ -6,17 +9,26 @@ Capybara/MatchStyle: # new in 2.17
|
|
6
9
|
Enabled: true
|
7
10
|
Capybara/NegationMatcher: # new in 2.14
|
8
11
|
Enabled: true
|
12
|
+
Capybara/RedundantWithinFind: # new in 2.20
|
13
|
+
Enabled: true
|
9
14
|
Capybara/SpecificActions: # new in 2.14
|
10
15
|
Enabled: true
|
11
16
|
Capybara/SpecificMatcher: # new in 2.12
|
12
17
|
Enabled: true
|
13
18
|
|
19
|
+
Capybara/RSpec/HaveSelector: # new in 2.19
|
20
|
+
Enabled: true
|
21
|
+
|
14
22
|
FactoryBot/AssociationStyle: # new in 2.23
|
15
23
|
Enabled: true
|
24
|
+
FactoryBot/ExcessiveCreateList: # new in 2.25
|
25
|
+
Enabled: true
|
16
26
|
FactoryBot/FactoryAssociationWithStrategy: # new in 2.23
|
17
27
|
Enabled: true
|
18
28
|
FactoryBot/FactoryClassName: # new in 1.37
|
19
29
|
Enabled: true
|
30
|
+
FactoryBot/IdSequence: # new in 2.19
|
31
|
+
Enabled: true
|
20
32
|
FactoryBot/FactoryNameStyle: # new in 2.16
|
21
33
|
Enabled: true
|
22
34
|
FactoryBot/RedundantFactoryOption: # new in 2.23
|
@@ -68,8 +80,12 @@ Lint/EmptyInPattern: # new in 1.16
|
|
68
80
|
Enabled: true
|
69
81
|
Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
|
70
82
|
Enabled: true
|
83
|
+
Lint/ItWithoutArgumentsInBlock: # new in 1.59
|
84
|
+
Enabled: true
|
71
85
|
Lint/LambdaWithoutLiteralBlock: # new in 1.8
|
72
86
|
Enabled: true
|
87
|
+
Lint/LiteralAssignmentInCondition: # new in 1.58
|
88
|
+
Enabled: false
|
73
89
|
Lint/MixedCaseRange: # new in 1.53
|
74
90
|
Enabled: true
|
75
91
|
Lint/NonAtomicFileOperation: # new in 1.31
|
@@ -107,6 +123,46 @@ Lint/UselessRuby2Keywords: # new in 1.23
|
|
107
123
|
|
108
124
|
Metrics/CollectionLiteralLength: # new in 1.47
|
109
125
|
Enabled: true
|
126
|
+
|
127
|
+
Performance/AncestorsInclude: # new in 1.7
|
128
|
+
Enabled: true
|
129
|
+
Performance/BigDecimalWithNumericArgument: # new in 1.7
|
130
|
+
Enabled: true
|
131
|
+
Performance/BlockGivenWithExplicitBlock: # new in 1.9
|
132
|
+
Enabled: true
|
133
|
+
Performance/CollectionLiteralInLoop: # new in 1.8
|
134
|
+
Enabled: true
|
135
|
+
Performance/ConcurrentMonotonicTime: # new in 1.12
|
136
|
+
Enabled: true
|
137
|
+
Performance/ConstantRegexp: # new in 1.9
|
138
|
+
Enabled: true
|
139
|
+
Performance/MapCompact: # new in 1.11
|
140
|
+
Enabled: true
|
141
|
+
Performance/MapMethodChain: # new in 1.19
|
142
|
+
Enabled: true
|
143
|
+
Performance/MethodObjectAsBlock: # new in 1.9
|
144
|
+
Enabled: true
|
145
|
+
Performance/RedundantEqualityComparisonBlock: # new in 1.10
|
146
|
+
Enabled: true
|
147
|
+
Performance/RedundantSortBlock: # new in 1.7
|
148
|
+
Enabled: true
|
149
|
+
Performance/RedundantSplitRegexpArgument: # new in 1.10
|
150
|
+
Enabled: true
|
151
|
+
Performance/RedundantStringChars: # new in 1.7
|
152
|
+
Enabled: true
|
153
|
+
Performance/ReverseFirst: # new in 1.7
|
154
|
+
Enabled: true
|
155
|
+
Performance/SortReverse: # new in 1.7
|
156
|
+
Enabled: true
|
157
|
+
Performance/Squeeze: # new in 1.7
|
158
|
+
Enabled: true
|
159
|
+
Performance/StringIdentifierArgument: # new in 1.13
|
160
|
+
Enabled: true
|
161
|
+
Performance/StringInclude: # new in 1.7
|
162
|
+
Enabled: true
|
163
|
+
Performance/Sum: # new in 1.8
|
164
|
+
Enabled: true
|
165
|
+
|
110
166
|
RSpec/BeEmpty: # new in 2.20
|
111
167
|
Enabled: true
|
112
168
|
RSpec/BeEq: # new in 2.9.0
|
@@ -141,6 +197,10 @@ RSpec/ReceiveMessages: # new in 2.23
|
|
141
197
|
Enabled: true
|
142
198
|
RSpec/RedundantAround: # new in 2.19
|
143
199
|
Enabled: true
|
200
|
+
RSpec/RedundantPredicateMatcher: # new in 2.26
|
201
|
+
Enabled: true
|
202
|
+
RSpec/RemoveConst: # new in 2.26
|
203
|
+
Enabled: true
|
144
204
|
RSpec/SkipBlockInsideExample: # new in 2.19
|
145
205
|
Enabled: true
|
146
206
|
RSpec/SortMetadata: # new in 2.14
|
@@ -255,8 +315,12 @@ Style/RedundantStringEscape: # new in 1.37
|
|
255
315
|
Enabled: true
|
256
316
|
Style/SelectByRegexp: # new in 1.22
|
257
317
|
Enabled: true
|
318
|
+
Style/SingleLineDoEndBlock: # new in 1.57
|
319
|
+
Enabled: true
|
258
320
|
Style/StringChars: # new in 1.12
|
259
321
|
Enabled: true
|
322
|
+
Style/SuperWithArgsParentheses: # new in 1.58
|
323
|
+
Enabled: false
|
260
324
|
Style/SwapValues: # new in 1.1
|
261
325
|
Enabled: true
|
262
326
|
Style/YAMLFileRead: # new in 1.53
|
data/.rubocop.yml
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion:
|
2
|
+
TargetRubyVersion: 3.3
|
3
3
|
|
4
4
|
inherit_from:
|
5
|
-
- .rubocop-defaults.yml
|
6
|
-
- .rubocop-defaults-rails.yml
|
7
5
|
- .yoshiki.yml
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
- lib/yoshiki.rb
|
12
|
-
- spec/yoshiki_spec.rb
|
7
|
+
Gemspec/RequiredRubyVersion:
|
8
|
+
Enabled: false
|
data/.yoshiki-rails.yml
CHANGED
@@ -8,12 +8,20 @@ AllCops:
|
|
8
8
|
- lib/templates/**/*
|
9
9
|
- vendor/**/*
|
10
10
|
|
11
|
-
|
12
|
-
|
11
|
+
inherit_from:
|
12
|
+
- .rubocop-defaults-rails.yml
|
13
13
|
|
14
|
+
Capybara/ClickLinkOrButtonStyle: # new in 2.19
|
15
|
+
Enabled: true
|
16
|
+
EnforcedStyle: strict
|
14
17
|
Capybara/SpecificFinders: # new in 2.13
|
15
18
|
Enabled: false # prefer find('#css-id')
|
16
19
|
|
20
|
+
Capybara/RSpec/PredicateMatcher: # new in 2.19
|
21
|
+
Enabled: true
|
22
|
+
EnforcedStyle: inflected
|
23
|
+
Strict: false
|
24
|
+
|
17
25
|
FactoryBot/ConsistentParenthesesStyle: # new in 2.14
|
18
26
|
Enabled: true
|
19
27
|
EnforcedStyle: omit_parentheses # default is `require_parentheses`
|
@@ -37,3 +45,15 @@ Rails/ToFormattedS: # new in 2.15
|
|
37
45
|
Enabled: false # prefer to_s(:format)
|
38
46
|
Rails/ToSWithArgument: # new in 2.16
|
39
47
|
Enabled: false # prefer to_s(:format)
|
48
|
+
|
49
|
+
Style/Documentation: # this isn't a rails cop, but this config only makes sense for rails projects
|
50
|
+
Exclude: # default config doesn't exclude migrations
|
51
|
+
- app/controllers/application_controller.rb
|
52
|
+
- app/helpers/application_helper.rb
|
53
|
+
- app/jobs/application_job.rb
|
54
|
+
- app/mailers/application_mailer.rb
|
55
|
+
- app/models/application_record.rb
|
56
|
+
- config/application.rb
|
57
|
+
- db/migrate/**/*
|
58
|
+
- spec/**/*
|
59
|
+
- test/**/*
|
data/.yoshiki-ruby.yml
CHANGED
@@ -11,6 +11,9 @@ AllCops:
|
|
11
11
|
- bin/**/*
|
12
12
|
- Gemfile.lock
|
13
13
|
|
14
|
+
inherit_from:
|
15
|
+
- .rubocop-defaults.yml
|
16
|
+
|
14
17
|
Layout/AccessModifierIndentation:
|
15
18
|
EnforcedStyle: outdent # default is `indent`
|
16
19
|
Layout/BeginEndAlignment:
|
@@ -75,6 +78,7 @@ Metrics/BlockLength: # this cop allows configuration with AllowedMethods, Allowe
|
|
75
78
|
- context
|
76
79
|
CountAsOne:
|
77
80
|
- array
|
81
|
+
- hash
|
78
82
|
- heredoc
|
79
83
|
- method_call
|
80
84
|
Metrics/MethodLength: # this cop allows configuration with AllowedMethods, AllowedPatterns, & CountAsOne
|
@@ -120,6 +124,15 @@ RSpec/NestedGroups: # this cop can be configured with `AllowedGroups`
|
|
120
124
|
Enabled: false
|
121
125
|
RSpec/PendingWithoutReason: # new in 2.16
|
122
126
|
Enabled: false
|
127
|
+
RSpec/NoExpectationExample:
|
128
|
+
Exclude:
|
129
|
+
- spec/models/factory_spec.rb
|
130
|
+
RSpec/NotToNot:
|
131
|
+
EnforcedStyle: to_not # default is not_to; prefer common prefix
|
132
|
+
RSpec/MultipleExpectations:
|
133
|
+
Enabled: false # recommend using `aggregate_failures`
|
134
|
+
RSpec/SubjectStub: # allow stubbing subject
|
135
|
+
Enabled: false # should only be used for methods *not* under test
|
123
136
|
|
124
137
|
Style/AndOr:
|
125
138
|
Enabled: false
|
@@ -129,16 +142,13 @@ Style/BarePercentLiterals:
|
|
129
142
|
EnforcedStyle: percent_q # default is `bare_percent`
|
130
143
|
Style/CommandLiteral:
|
131
144
|
EnforcedStyle: mixed # default is `backticks`
|
132
|
-
Style/Documentation: # default config doesn't exclude migrations
|
133
|
-
Exclude:
|
134
|
-
- 'db/migrate/**/*'
|
135
|
-
- 'spec/**/*'
|
136
|
-
- 'test/**/*'
|
137
145
|
Style/DoubleNegation:
|
138
146
|
Enabled: false
|
139
147
|
Style/EndlessMethod: # new in 1.8
|
140
148
|
Enabled: true
|
141
149
|
EnforcedStyle: disallow # default is `allow_single_line`
|
150
|
+
Style/FrozenStringLiteralComment:
|
151
|
+
SafeAutoCorrect: true # default is `false`
|
142
152
|
Style/HashSyntax:
|
143
153
|
EnforcedShorthandSyntax: consistent # default is `always`
|
144
154
|
Style/MethodDefParentheses:
|
data/Gemfile.lock
CHANGED
@@ -1,45 +1,58 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
yoshiki (
|
5
|
-
rubocop (
|
6
|
-
rubocop-
|
7
|
-
rubocop-
|
8
|
-
rubocop-
|
4
|
+
yoshiki (9.0.0.pre.2)
|
5
|
+
rubocop (>= 1.56.4)
|
6
|
+
rubocop-capybara (>= 2.19.0)
|
7
|
+
rubocop-factory_bot (>= 2.24.0)
|
8
|
+
rubocop-performance (>= 1.20.2)
|
9
|
+
rubocop-rails (>= 2.22.2)
|
10
|
+
rubocop-rake (>= 0.6.0)
|
11
|
+
rubocop-rspec (>= 2.25.0)
|
9
12
|
|
10
13
|
GEM
|
11
14
|
remote: https://rubygems.org/
|
12
15
|
specs:
|
13
|
-
activesupport (7.
|
16
|
+
activesupport (7.1.3)
|
17
|
+
base64
|
18
|
+
bigdecimal
|
14
19
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
20
|
+
connection_pool (>= 2.2.5)
|
21
|
+
drb
|
15
22
|
i18n (>= 1.6, < 2)
|
16
23
|
minitest (>= 5.1)
|
24
|
+
mutex_m
|
17
25
|
tzinfo (~> 2.0)
|
18
26
|
ast (2.4.2)
|
19
|
-
base64 (0.
|
27
|
+
base64 (0.2.0)
|
28
|
+
bigdecimal (3.1.6)
|
20
29
|
coderay (1.1.3)
|
21
|
-
concurrent-ruby (1.2.
|
30
|
+
concurrent-ruby (1.2.3)
|
31
|
+
connection_pool (2.4.1)
|
22
32
|
diff-lcs (1.5.0)
|
33
|
+
drb (2.2.0)
|
34
|
+
ruby2_keywords
|
23
35
|
i18n (1.14.1)
|
24
36
|
concurrent-ruby (~> 1.0)
|
25
|
-
json (2.
|
37
|
+
json (2.7.1)
|
26
38
|
language_server-protocol (3.17.0.3)
|
27
39
|
method_source (1.0.0)
|
28
|
-
minitest (5.
|
29
|
-
|
30
|
-
|
40
|
+
minitest (5.21.2)
|
41
|
+
mutex_m (0.2.0)
|
42
|
+
parallel (1.24.0)
|
43
|
+
parser (3.3.0.5)
|
31
44
|
ast (~> 2.4.1)
|
32
45
|
racc
|
33
46
|
pry (0.14.2)
|
34
47
|
coderay (~> 1.1)
|
35
48
|
method_source (~> 1.0)
|
36
|
-
psych (5.1.
|
49
|
+
psych (5.1.2)
|
37
50
|
stringio
|
38
|
-
racc (1.7.
|
51
|
+
racc (1.7.3)
|
39
52
|
rack (3.0.8)
|
40
53
|
rainbow (3.1.1)
|
41
|
-
rake (13.0
|
42
|
-
regexp_parser (2.
|
54
|
+
rake (13.1.0)
|
55
|
+
regexp_parser (2.9.0)
|
43
56
|
rexml (3.2.6)
|
44
57
|
rspec (3.12.0)
|
45
58
|
rspec-core (~> 3.12.0)
|
@@ -54,39 +67,43 @@ GEM
|
|
54
67
|
diff-lcs (>= 1.2.0, < 2.0)
|
55
68
|
rspec-support (~> 3.12.0)
|
56
69
|
rspec-support (3.12.1)
|
57
|
-
rubocop (1.
|
58
|
-
base64 (~> 0.1.1)
|
70
|
+
rubocop (1.60.1)
|
59
71
|
json (~> 2.3)
|
60
72
|
language_server-protocol (>= 3.17.0)
|
61
73
|
parallel (~> 1.10)
|
62
|
-
parser (>= 3.
|
74
|
+
parser (>= 3.3.0.2)
|
63
75
|
rainbow (>= 2.2.2, < 4.0)
|
64
76
|
regexp_parser (>= 1.8, < 3.0)
|
65
77
|
rexml (>= 3.2.5, < 4.0)
|
66
|
-
rubocop-ast (>= 1.
|
78
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
67
79
|
ruby-progressbar (~> 1.7)
|
68
80
|
unicode-display_width (>= 2.4.0, < 3.0)
|
69
|
-
rubocop-ast (1.
|
81
|
+
rubocop-ast (1.30.0)
|
70
82
|
parser (>= 3.2.1.0)
|
71
|
-
rubocop-capybara (2.
|
83
|
+
rubocop-capybara (2.20.0)
|
72
84
|
rubocop (~> 1.41)
|
73
|
-
rubocop-factory_bot (2.
|
74
|
-
rubocop (~> 1.
|
75
|
-
rubocop-
|
85
|
+
rubocop-factory_bot (2.25.1)
|
86
|
+
rubocop (~> 1.41)
|
87
|
+
rubocop-performance (1.20.2)
|
88
|
+
rubocop (>= 1.48.1, < 2.0)
|
89
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
90
|
+
rubocop-rails (2.23.1)
|
76
91
|
activesupport (>= 4.2.0)
|
77
92
|
rack (>= 1.1)
|
78
93
|
rubocop (>= 1.33.0, < 2.0)
|
94
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
79
95
|
rubocop-rake (0.6.0)
|
80
96
|
rubocop (~> 1.0)
|
81
|
-
rubocop-rspec (2.
|
82
|
-
rubocop (~> 1.
|
97
|
+
rubocop-rspec (2.26.1)
|
98
|
+
rubocop (~> 1.40)
|
83
99
|
rubocop-capybara (~> 2.17)
|
84
100
|
rubocop-factory_bot (~> 2.22)
|
85
101
|
ruby-progressbar (1.13.0)
|
86
|
-
|
102
|
+
ruby2_keywords (0.0.5)
|
103
|
+
stringio (3.1.0)
|
87
104
|
tzinfo (2.0.6)
|
88
105
|
concurrent-ruby (~> 1.0)
|
89
|
-
unicode-display_width (2.
|
106
|
+
unicode-display_width (2.5.0)
|
90
107
|
|
91
108
|
PLATFORMS
|
92
109
|
ruby
|
@@ -99,4 +116,4 @@ DEPENDENCIES
|
|
99
116
|
yoshiki!
|
100
117
|
|
101
118
|
BUNDLED WITH
|
102
|
-
2.
|
119
|
+
2.5.5
|
data/README.md
CHANGED
@@ -43,22 +43,21 @@ inherit_gem:
|
|
43
43
|
yoshiki: .yoshiki-rails.yml
|
44
44
|
```
|
45
45
|
|
46
|
-
## Ruby
|
46
|
+
## Ruby compatibility
|
47
47
|
|
48
|
-
- ruby
|
49
|
-
- ruby 2.
|
50
|
-
- ruby 2.
|
51
|
-
- ruby 2.
|
52
|
-
- ruby 2.
|
48
|
+
- ruby 3.0+, use [=> 9.0][9.0]
|
49
|
+
- ruby 2.7, use [~> 8.0][8.0]
|
50
|
+
- ruby 2.6, use [~> 7.0][7.0]
|
51
|
+
- ruby 2.4+, use [~> 6.0][6.0.1]
|
52
|
+
- ruby 2.3, use [~> 3.2][3.2.0]
|
53
53
|
|
54
54
|
<!-- links -->
|
55
55
|
[ci]: https://gitlab.com/devfu/yoshiki/pipelines?scope=branches "build history"
|
56
56
|
[gem]: https://rubygems.org/gems/yoshiki
|
57
|
-
[3.2]: https://gitlab.com/devfu/yoshiki/tags/v3.2.0
|
58
|
-
[
|
59
|
-
[4.3]: https://gitlab.com/devfu/yoshiki/tags/v4.3.0
|
60
|
-
[6.0]: https://gitlab.com/devfu/yoshiki/tags/v6.0.0
|
57
|
+
[3.2.0]: https://gitlab.com/devfu/yoshiki/tags/v3.2.0
|
58
|
+
[6.0.1]: https://gitlab.com/devfu/yoshiki/tags/v6.0.1
|
61
59
|
[7.0]: https://gitlab.com/devfu/yoshiki/tags/v7.0.0
|
60
|
+
[8.0]: https://gitlab.com/devfu/yoshiki/tags/v8.0.0
|
62
61
|
|
63
62
|
<!-- images -->
|
64
63
|
[ci-image]: https://gitlab.com/devfu/yoshiki/badges/master/pipeline.svg
|
data/lib/yoshiki/version.rb
CHANGED
data/yoshiki.gemspec
CHANGED
@@ -20,10 +20,13 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
22
22
|
|
23
|
-
spec.required_ruby_version = '>=
|
23
|
+
spec.required_ruby_version = '>= 3.0.0'
|
24
24
|
|
25
|
-
spec.add_dependency 'rubocop',
|
26
|
-
spec.add_dependency 'rubocop-
|
27
|
-
spec.add_dependency 'rubocop-
|
28
|
-
spec.add_dependency 'rubocop-
|
25
|
+
spec.add_dependency 'rubocop', '>= 1.56.4'
|
26
|
+
spec.add_dependency 'rubocop-capybara', '>= 2.19.0'
|
27
|
+
spec.add_dependency 'rubocop-factory_bot', '>= 2.24.0'
|
28
|
+
spec.add_dependency 'rubocop-performance', '>= 1.20.2'
|
29
|
+
spec.add_dependency 'rubocop-rails', '>= 2.22.2'
|
30
|
+
spec.add_dependency 'rubocop-rake', '>= 0.6.0'
|
31
|
+
spec.add_dependency 'rubocop-rspec', '>= 2.25.0'
|
29
32
|
end
|
metadata
CHANGED
@@ -1,71 +1,113 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yoshiki
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 9.0.0.pre.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BM5k
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.56.
|
19
|
+
version: 1.56.4
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.56.
|
26
|
+
version: 1.56.4
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rubocop-capybara
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.19.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 2.19.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rubocop-factory_bot
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.24.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.24.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubocop-performance
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.20.2
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.20.2
|
27
69
|
- !ruby/object:Gem::Dependency
|
28
70
|
name: rubocop-rails
|
29
71
|
requirement: !ruby/object:Gem::Requirement
|
30
72
|
requirements:
|
31
|
-
- -
|
73
|
+
- - ">="
|
32
74
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.
|
75
|
+
version: 2.22.2
|
34
76
|
type: :runtime
|
35
77
|
prerelease: false
|
36
78
|
version_requirements: !ruby/object:Gem::Requirement
|
37
79
|
requirements:
|
38
|
-
- -
|
80
|
+
- - ">="
|
39
81
|
- !ruby/object:Gem::Version
|
40
|
-
version: 2.
|
82
|
+
version: 2.22.2
|
41
83
|
- !ruby/object:Gem::Dependency
|
42
84
|
name: rubocop-rake
|
43
85
|
requirement: !ruby/object:Gem::Requirement
|
44
86
|
requirements:
|
45
|
-
- -
|
87
|
+
- - ">="
|
46
88
|
- !ruby/object:Gem::Version
|
47
89
|
version: 0.6.0
|
48
90
|
type: :runtime
|
49
91
|
prerelease: false
|
50
92
|
version_requirements: !ruby/object:Gem::Requirement
|
51
93
|
requirements:
|
52
|
-
- -
|
94
|
+
- - ">="
|
53
95
|
- !ruby/object:Gem::Version
|
54
96
|
version: 0.6.0
|
55
97
|
- !ruby/object:Gem::Dependency
|
56
98
|
name: rubocop-rspec
|
57
99
|
requirement: !ruby/object:Gem::Requirement
|
58
100
|
requirements:
|
59
|
-
- -
|
101
|
+
- - ">="
|
60
102
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.
|
103
|
+
version: 2.25.0
|
62
104
|
type: :runtime
|
63
105
|
prerelease: false
|
64
106
|
version_requirements: !ruby/object:Gem::Requirement
|
65
107
|
requirements:
|
66
|
-
- -
|
108
|
+
- - ">="
|
67
109
|
- !ruby/object:Gem::Version
|
68
|
-
version: 2.
|
110
|
+
version: 2.25.0
|
69
111
|
description: Dev Fu! Style for rubocop.
|
70
112
|
email:
|
71
113
|
- me@bm5k.com
|
@@ -107,14 +149,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
149
|
requirements:
|
108
150
|
- - ">="
|
109
151
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
152
|
+
version: 3.0.0
|
111
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
154
|
requirements:
|
113
155
|
- - ">="
|
114
156
|
- !ruby/object:Gem::Version
|
115
157
|
version: '0'
|
116
158
|
requirements: []
|
117
|
-
rubygems_version: 3.
|
159
|
+
rubygems_version: 3.5.5
|
118
160
|
signing_key:
|
119
161
|
specification_version: 4
|
120
162
|
summary: Dev Fu! Style
|