yoshiki 9.0.0.pre.7 → 9.0.0.pre.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6d6c021520471c78ede29b2fc2c6c9486a5bda5e9ce0be9476a8adaa6f5bc51
4
- data.tar.gz: d1e7dd08fe75ab1c61f98d62b868a1aa855b7a13bba46ea74a2657e63e482ec1
3
+ metadata.gz: 5a6ea7f37a7087d04ebfd08993bfae7c267a15c12e47b62379ba4f16c8dc11df
4
+ data.tar.gz: a390844bf5ac640dc5a43125a3d6bd981c6487471ac5378b39c744a942c99760
5
5
  SHA512:
6
- metadata.gz: 7cd329a315aaa9495fae9500a69ae9c69be9ba687552a8ac542edd961886b0af11fe206b975a53c81c97f6656c65ac12b00ecd98faea8610bd0e7aecd351c86e
7
- data.tar.gz: c876fddc110ef753ab69546f0e5103c049dbac07c3873f1d82a000fafd0c1535af74836b6579c845b77b0686472079ce79c8f3a8309bd80be684cdd667f81e6d
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
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
@@ -14,33 +14,33 @@ 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)
42
+ minitest (5.25.1)
43
+ parallel (1.26.3)
44
44
  parser (3.3.5.0)
45
45
  ast (~> 2.4.1)
46
46
  racc
@@ -49,11 +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)
56
+ regexp_parser (2.9.2)
57
57
  rspec (3.12.0)
58
58
  rspec-core (~> 3.12.0)
59
59
  rspec-expectations (~> 3.12.0)
@@ -67,7 +67,7 @@ GEM
67
67
  diff-lcs (>= 1.2.0, < 2.0)
68
68
  rspec-support (~> 3.12.0)
69
69
  rspec-support (3.12.1)
70
- rubocop (1.66.1)
70
+ rubocop (1.67.0)
71
71
  json (~> 2.3)
72
72
  language_server-protocol (>= 3.17.0)
73
73
  parallel (~> 1.10)
@@ -99,11 +99,11 @@ GEM
99
99
  rubocop (~> 1.61)
100
100
  rubocop-rspec (~> 3, >= 3.0.1)
101
101
  ruby-progressbar (1.13.0)
102
- ruby2_keywords (0.0.5)
102
+ securerandom (0.3.1)
103
103
  stringio (3.1.0)
104
104
  tzinfo (2.0.6)
105
105
  concurrent-ruby (~> 1.0)
106
- unicode-display_width (2.5.0)
106
+ unicode-display_width (2.6.0)
107
107
 
108
108
  PLATFORMS
109
109
  arm64-darwin-24
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Yoshiki
4
4
 
5
- VERSION = '9.0.0-7'
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.7
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-04 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