yoshiki 9.0.0.pre.6 → 9.0.0.pre.9

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: 929aa2a6c345bf8592d2418d7f7eb32e1cea3d5a099e28743ce3c2464e9b48b2
4
- data.tar.gz: 31cf37b5a15f4a83b111c2a6c3036ede6eecb4e4270c7026c7052bfe68c4c804
3
+ metadata.gz: 5a6ea7f37a7087d04ebfd08993bfae7c267a15c12e47b62379ba4f16c8dc11df
4
+ data.tar.gz: a390844bf5ac640dc5a43125a3d6bd981c6487471ac5378b39c744a942c99760
5
5
  SHA512:
6
- metadata.gz: 91165f9e7728c82deef4650172a0953565e3f25641a522e1f4d1e8a03db0d3f5f5cd5f4fb68f47f36f9904445c61ee4d9b7ebff1f18bd76b31449a2e1ef7ddb4
7
- data.tar.gz: 015e4b3502af59a5d83d1896a6a88d82bc1456bdb5203808b137f635293fbf9f908b3152154d8122e32deb51ad6bedd43d31a09c99d8ce684a6df980eeff7d89
6
+ metadata.gz: c0990b37e4824b1fc6583a5bad5270ab0d7b0f2fc90983bb1496a0783ad989998437b842ef6c0caf06b672251011cf7f3966eaf7c6a05993b645c5e16d64f13b
7
+ data.tar.gz: 944732153a13cebbce1ff01f3747e902a5f4e4671a154a62ef718046634cf328038b3925cc97a14caa865f83adcaeb9655daa2a5dd2b3e7195a0f996a9fb9a05
@@ -1,10 +1,43 @@
1
1
  require:
2
+ - rubocop-capybara
3
+ - rubocop-factory_bot
2
4
  - rubocop-rails
3
5
  - rubocop-rspec_rails
4
6
 
5
7
  Rails:
6
8
  Enabled: true
7
9
 
10
+ Capybara/MatchStyle: # new in 2.17
11
+ Enabled: true
12
+ Capybara/NegationMatcher: # new in 2.14
13
+ Enabled: true
14
+ Capybara/RedundantWithinFind: # new in 2.20
15
+ Enabled: true
16
+ Capybara/SpecificActions: # new in 2.14
17
+ Enabled: true
18
+ Capybara/SpecificMatcher: # new in 2.12
19
+ Enabled: true
20
+
21
+ Capybara/RSpec/HaveSelector: # new in 2.19
22
+ Enabled: true
23
+
24
+ FactoryBot/AssociationStyle: # new in 2.23
25
+ Enabled: true
26
+ FactoryBot/ExcessiveCreateList: # new in 2.25
27
+ Enabled: true
28
+ FactoryBot/FactoryAssociationWithStrategy: # new in 2.23
29
+ Enabled: true
30
+ FactoryBot/FactoryClassName: # new in 1.37
31
+ Enabled: true
32
+ FactoryBot/IdSequence: # new in 2.19
33
+ Enabled: true
34
+ FactoryBot/FactoryNameStyle: # new in 2.16
35
+ Enabled: true
36
+ FactoryBot/RedundantFactoryOption: # new in 2.23
37
+ Enabled: true
38
+ FactoryBot/SyntaxMethods: # new in 2.7
39
+ Enabled: true
40
+
8
41
  Rails/ActionControllerFlashBeforeRender: # new in 2.16
9
42
  Enabled: true
10
43
  Rails/ActionControllerTestCase: # new in 2.14
@@ -1,40 +1,7 @@
1
1
  require:
2
- - rubocop-capybara
3
- - rubocop-factory_bot
4
2
  - rubocop-performance
5
3
  - rubocop-rake
6
4
 
7
- Capybara/MatchStyle: # new in 2.17
8
- Enabled: true
9
- Capybara/NegationMatcher: # new in 2.14
10
- Enabled: true
11
- Capybara/RedundantWithinFind: # new in 2.20
12
- Enabled: true
13
- Capybara/SpecificActions: # new in 2.14
14
- Enabled: true
15
- Capybara/SpecificMatcher: # new in 2.12
16
- Enabled: true
17
-
18
- Capybara/RSpec/HaveSelector: # new in 2.19
19
- Enabled: true
20
-
21
- FactoryBot/AssociationStyle: # new in 2.23
22
- Enabled: true
23
- FactoryBot/ExcessiveCreateList: # new in 2.25
24
- Enabled: true
25
- FactoryBot/FactoryAssociationWithStrategy: # new in 2.23
26
- Enabled: true
27
- FactoryBot/FactoryClassName: # new in 1.37
28
- Enabled: true
29
- FactoryBot/IdSequence: # new in 2.19
30
- Enabled: true
31
- FactoryBot/FactoryNameStyle: # new in 2.16
32
- Enabled: true
33
- FactoryBot/RedundantFactoryOption: # new in 2.23
34
- Enabled: true
35
- FactoryBot/SyntaxMethods: # new in 2.7
36
- Enabled: true
37
-
38
5
  Gemspec/AddRuntimeDependency: # new in 1.65
39
6
  Enabled: true
40
7
  Gemspec/DeprecatedAttributeAssignment: # new in 1.30
@@ -73,6 +40,8 @@ Lint/DuplicateMatchPattern: # new in 1.50
73
40
  Enabled: true
74
41
  Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
75
42
  Enabled: true
43
+ Lint/DuplicateSetElement: # new in 1.67
44
+ Enabled: true
76
45
  Lint/EmptyBlock: # new in 1.1
77
46
  Enabled: true
78
47
  Lint/EmptyClass: # new in 1.3
@@ -117,6 +86,8 @@ Lint/UnexpectedBlockArity: # new in 1.5
117
86
  Enabled: true
118
87
  Lint/UnmodifiedReduceAccumulator: # new in 1.1
119
88
  Enabled: true
89
+ Lint/UselessNumericOperation: # new in 1.66
90
+ Enabled: true
120
91
  Lint/UselessRescue: # new in 1.43
121
92
  Enabled: true
122
93
  Lint/UselessRuby2Keywords: # new in 1.23
@@ -251,6 +222,8 @@ Style/RedundantHeredocDelimiterQuotes: # new in 1.45
251
222
  Enabled: true
252
223
  Style/RedundantInitialize: # new in 1.27
253
224
  Enabled: true
225
+ Style/RedundantInterpolationUnfreeze: # new in 1.66
226
+ Enabled: true
254
227
  Style/RedundantLineContinuation: # new in 1.49
255
228
  Enabled: true
256
229
  Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
data/.yoshiki-rails.yml CHANGED
@@ -12,15 +12,14 @@ inherit_from:
12
12
  - .rubocop-defaults-rails.yml
13
13
 
14
14
  Capybara/ClickLinkOrButtonStyle: # new in 2.19
15
- Enabled: true
16
- EnforcedStyle: strict
15
+ Enabled: false # cop is already deprecated
17
16
  Capybara/SpecificFinders: # new in 2.13
18
17
  Enabled: false # prefer find('#css-id')
19
18
 
20
19
  Capybara/RSpec/PredicateMatcher: # new in 2.19
21
20
  Enabled: true
22
21
  EnforcedStyle: inflected
23
- Strict: false
22
+ Strict: false # don't allow "strict" checks (methinks this option is poorly named)
24
23
 
25
24
  FactoryBot/ConsistentParenthesesStyle: # new in 2.14
26
25
  Enabled: true
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yoshiki (9.0.0.pre.6)
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)
@@ -14,34 +14,34 @@ PATH
14
14
  GEM
15
15
  remote: https://rubygems.org/
16
16
  specs:
17
- activesupport (7.1.3)
17
+ activesupport (7.2.1.1)
18
18
  base64
19
19
  bigdecimal
20
- concurrent-ruby (~> 1.0, >= 1.0.2)
20
+ concurrent-ruby (~> 1.0, >= 1.3.1)
21
21
  connection_pool (>= 2.2.5)
22
22
  drb
23
23
  i18n (>= 1.6, < 2)
24
+ logger (>= 1.4.2)
24
25
  minitest (>= 5.1)
25
- mutex_m
26
- tzinfo (~> 2.0)
26
+ securerandom (>= 0.3)
27
+ tzinfo (~> 2.0, >= 2.0.5)
27
28
  ast (2.4.2)
28
29
  base64 (0.2.0)
29
- bigdecimal (3.1.6)
30
+ bigdecimal (3.1.8)
30
31
  coderay (1.1.3)
31
- concurrent-ruby (1.2.3)
32
+ concurrent-ruby (1.3.4)
32
33
  connection_pool (2.4.1)
33
34
  diff-lcs (1.5.0)
34
- drb (2.2.0)
35
- ruby2_keywords
36
- i18n (1.14.1)
35
+ drb (2.2.1)
36
+ i18n (1.14.6)
37
37
  concurrent-ruby (~> 1.0)
38
- json (2.7.1)
38
+ json (2.7.2)
39
39
  language_server-protocol (3.17.0.3)
40
+ logger (1.6.1)
40
41
  method_source (1.0.0)
41
- minitest (5.21.2)
42
- mutex_m (0.2.0)
43
- parallel (1.24.0)
44
- parser (3.3.0.5)
42
+ minitest (5.25.1)
43
+ parallel (1.26.3)
44
+ parser (3.3.5.0)
45
45
  ast (~> 2.4.1)
46
46
  racc
47
47
  pry (0.14.2)
@@ -49,12 +49,11 @@ GEM
49
49
  method_source (~> 1.0)
50
50
  psych (5.1.2)
51
51
  stringio
52
- racc (1.7.3)
53
- rack (3.0.8)
52
+ racc (1.8.1)
53
+ rack (3.1.8)
54
54
  rainbow (3.1.1)
55
55
  rake (13.1.0)
56
- regexp_parser (2.9.0)
57
- rexml (3.2.6)
56
+ regexp_parser (2.9.2)
58
57
  rspec (3.12.0)
59
58
  rspec-core (~> 3.12.0)
60
59
  rspec-expectations (~> 3.12.0)
@@ -68,19 +67,18 @@ 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.65.1)
70
+ rubocop (1.67.0)
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
76
  regexp_parser (>= 2.4, < 3.0)
78
- rexml (>= 3.2.5, < 4.0)
79
- rubocop-ast (>= 1.31.1, < 2.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.31.2)
83
- parser (>= 3.3.0.4)
80
+ rubocop-ast (1.32.3)
81
+ parser (>= 3.3.1.0)
84
82
  rubocop-capybara (2.21.0)
85
83
  rubocop (~> 1.41)
86
84
  rubocop-factory_bot (2.26.1)
@@ -101,11 +99,11 @@ GEM
101
99
  rubocop (~> 1.61)
102
100
  rubocop-rspec (~> 3, >= 3.0.1)
103
101
  ruby-progressbar (1.13.0)
104
- ruby2_keywords (0.0.5)
102
+ securerandom (0.3.1)
105
103
  stringio (3.1.0)
106
104
  tzinfo (2.0.6)
107
105
  concurrent-ruby (~> 1.0)
108
- unicode-display_width (2.5.0)
106
+ unicode-display_width (2.6.0)
109
107
 
110
108
  PLATFORMS
111
109
  arm64-darwin-24
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Yoshiki
4
4
 
5
- VERSION = '9.0.0-6'
5
+ VERSION = '9.0.0-9'
6
6
 
7
7
  end
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.6
4
+ version: 9.0.0.pre.9
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-03 00:00:00.000000000 Z
11
+ date: 2024-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -172,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
172
  - !ruby/object:Gem::Version
173
173
  version: '0'
174
174
  requirements: []
175
- rubygems_version: 3.5.21
175
+ rubygems_version: 3.5.11
176
176
  signing_key:
177
177
  specification_version: 4
178
178
  summary: Dev Fu! Style