yoshiki 9.0.0 → 10.0.0.pre.1

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: d62383cecdfd7af660c27c974bd3fb21178d5ff27193cc2dab46c7d1bb4fc053
4
- data.tar.gz: 5d65d01b435053d833798920da6524393e36212359661a9f4295f230dc490573
3
+ metadata.gz: 2a1eb2e0378094b0366790fe2fcf7d8ea61904d8d6a48f9cab03f5c11503e78d
4
+ data.tar.gz: a3afb03b9cdb8eff0be1153afc025dc727f5f5fa381624dd2103e7cb68615891
5
5
  SHA512:
6
- metadata.gz: c9a48d394c207558210fa1a170443c39655be381791fbaf7962c3d500d5b68345d811f9fccb077a807c1a9dc94d17951a670929ae3e5ca24fe7ce19a3ebf23ba
7
- data.tar.gz: 5da785a1d4d57d67770045f37f6262cfa03a202955f201655eefe9ed64517f01aac2b6e37cb23d496c989b6612119d2a3763aac0e3d6a469c84da1fda4ad44e2
6
+ metadata.gz: 8154fc706a75679f8d6e96243b7a23ad915cf6a03b8fe5b83cbcc6e2eea488066bed1820bf1be67e8441efca984a3524bd88c9f94ed749d1fc30672f2ad5773d
7
+ data.tar.gz: ba00d488ebcd3691a9d250accc29cbeef5895a3139fd07f1f38fb11392d8156a6d1a1f7c73648d635768b0b5771d03cf656fb63dba998a7aedf82ac0f638533c
data/.gitlab-ci.yml CHANGED
@@ -1,59 +1,19 @@
1
1
  variables:
2
- BUNDLE_BIN: vendor/bundle/bin
3
- BUNDLE_PATH: vendor/bundle
2
+ BUNDLE_BIN: vendor/bundle/bin
3
+ BUNDLE_CLEAN: true
4
+ BUNDLE_PATH: vendor/bundle
4
5
 
5
6
  before_script:
6
7
  - apk upgrade --update && apk add --no-cache git build-base
7
8
  - gem update bundler
8
- - bundle install --clean --jobs $(nproc) --retry=3
9
+ - bundle install --jobs $(nproc) --retry=3
9
10
 
10
11
  ruby 3.4:
11
- allow_failure: true
12
12
  cache:
13
13
  key: "$CI_BUILD_REF_NAME-3.4"
14
14
  paths:
15
15
  - vendor/bundle
16
- image: ruby:3.4-rc-alpine
17
- script:
18
- - bundle exec rake spec rubocop
19
- stage: test
20
-
21
- ruby 3.3:
22
- cache:
23
- key: "$CI_BUILD_REF_NAME-3.3"
24
- paths:
25
- - vendor/bundle
26
- image: ruby:3.3-alpine
27
- script:
28
- - bundle exec rake spec rubocop
29
- stage: test
30
-
31
- ruby 3.2:
32
- cache:
33
- key: "$CI_BUILD_REF_NAME-3.2"
34
- paths:
35
- - vendor/bundle
36
- image: ruby:3.2-alpine
37
- script:
38
- - bundle exec rake spec rubocop
39
- stage: test
40
-
41
- ruby 3.1:
42
- cache:
43
- key: "$CI_BUILD_REF_NAME-3.1"
44
- paths:
45
- - vendor/bundle
46
- image: ruby:3.1-alpine
47
- script:
48
- - bundle exec rake spec rubocop
49
- stage: test
50
-
51
- ruby 3.0:
52
- cache:
53
- key: "$CI_BUILD_REF_NAME-3.0"
54
- paths:
55
- - vendor/bundle
56
- image: ruby:3.0-alpine
16
+ image: ruby:3.4
57
17
  script:
58
18
  - bundle exec rake spec rubocop
59
19
  stage: test
@@ -1,9 +1,14 @@
1
+ plugins:
2
+ - rubocop-rails
3
+
1
4
  require:
2
5
  - rubocop-capybara
3
6
  - rubocop-factory_bot
4
- - rubocop-rails
5
7
  - rubocop-rspec_rails
6
8
 
9
+ AllCops:
10
+ ActiveSupportExtensionsEnabled: true
11
+
7
12
  Rails:
8
13
  Enabled: true
9
14
 
@@ -94,6 +99,8 @@ Rails/MatchRoute: # new in 2.7
94
99
  Enabled: true
95
100
  Rails/MigrationClassName: # new in 2.14
96
101
  Enabled: true
102
+ Rails/MultipleRoutePaths: # new in 2.29
103
+ Enabled: true
97
104
  Rails/NegateInclude: # new in 2.7
98
105
  Enabled: true
99
106
  Rails/Output:
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rspec
3
3
 
4
4
  RSpec/BeEmpty: # new in 2.20
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-performance
3
3
  - rubocop-rake
4
4
 
@@ -28,8 +28,14 @@ Lint/AmbiguousOperatorPrecedence: # new in 1.21
28
28
  Enabled: true
29
29
  Lint/AmbiguousRange: # new in 1.19
30
30
  Enabled: true
31
+ Lint/ArrayLiteralInRegexp: # new in 1.71
32
+ Enabled: true
31
33
  Lint/ConstantOverwrittenInRescue: # new in 1.31
32
34
  Enabled: true
35
+ Lint/ConstantReassignment: # new in 1.70
36
+ Enabled: true
37
+ Lint/CopDirectiveSyntax: # new in 1.72
38
+ Enabled: true
33
39
  Lint/DeprecatedConstants: # new in 1.8
34
40
  Enabled: true
35
41
  Lint/DuplicateBranch: # new in 1.3
@@ -74,12 +80,18 @@ Lint/RedundantDirGlobSort: # new in 1.8
74
80
  Enabled: true
75
81
  Lint/RedundantRegexpQuantifiers: # new in 1.53
76
82
  Enabled: true
83
+ Lint/RedundantTypeConversion: # new in 1.72
84
+ Enabled: true
77
85
  Lint/RefinementImportMethods: # new in 1.27
78
86
  Enabled: true
79
87
  Lint/RequireRangeParentheses: # new in 1.32
80
88
  Enabled: false
81
89
  Lint/RequireRelativeSelfPath: # new in 1.22
82
90
  Enabled: true
91
+ Lint/SharedMutableDefault: # new in 1.70
92
+ Enabled: true
93
+ Lint/SuppressedExceptionInNumberConversion: # new in 1.72
94
+ Enabled: true
83
95
  Lint/SymbolConversion: # new in 1.9
84
96
  Enabled: true
85
97
  Lint/ToEnumArguments: # new in 1.1
@@ -92,6 +104,8 @@ Lint/UnexpectedBlockArity: # new in 1.5
92
104
  Enabled: true
93
105
  Lint/UnmodifiedReduceAccumulator: # new in 1.1
94
106
  Enabled: true
107
+ Lint/UselessConstantScoping: # new in 1.72
108
+ Enabled: true
95
109
  Lint/UselessDefined: # new in 1.69
96
110
  Enabled: true
97
111
  Lint/UselessNumericOperation: # new in 1.66
@@ -142,6 +156,8 @@ Performance/StringInclude: # new in 1.7
142
156
  Enabled: true
143
157
  Performance/Sum: # new in 1.8
144
158
  Enabled: true
159
+ Performance/ZipWithoutBlock: # new in 1.24
160
+ Enabled: true
145
161
 
146
162
  Security/CompoundHash: # new in 1.28
147
163
  Enabled: true
@@ -194,10 +210,14 @@ Style/HashConversion: # new in 1.10
194
210
  Enabled: true
195
211
  Style/HashExcept: # new in 1.7
196
212
  Enabled: true
213
+ Style/HashSlice: # new in 1.71
214
+ Enabled: true
197
215
  Style/IfWithBooleanLiteralBranches: # new in 1.9
198
216
  Enabled: true
199
217
  Style/InPatternThen: # new in 1.16
200
218
  Enabled: true
219
+ Style/ItAssignment: # new in 1.70
220
+ Enabled: true
201
221
  Style/KeywordArgumentsMerging: # new in 1.68
202
222
  Enabled: true
203
223
  Style/MagicCommentFormat: # new in 1.35
@@ -242,6 +262,8 @@ Style/RedundantEach: # new in 1.38
242
262
  Enabled: true
243
263
  Style/RedundantFilterChain: # new in 1.52
244
264
  Enabled: true
265
+ Style/RedundantFormat: # new in 1.72
266
+ Enabled: true
245
267
  Style/RedundantHeredocDelimiterQuotes: # new in 1.45
246
268
  Enabled: true
247
269
  Style/RedundantInitialize: # new in 1.27
data/.yoshiki-rails.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rails
3
3
 
4
4
  AllCops:
@@ -47,6 +47,8 @@ Rails/ShortI18n: # new in 2.7
47
47
  EnforcedStyle: aggressive # default is `conservative`
48
48
  Rails/SkipsModelValidations:
49
49
  Enabled: false
50
+ Rails/StrongParametersExpect: # new in 2.29
51
+ Enabled: false # requires rails 8.0+
50
52
  Rails/ToFormattedS: # new in 2.15
51
53
  Enabled: false # prefer to_s(:format)
52
54
  Rails/ToSWithArgument: # new in 2.16
data/.yoshiki-rspec.yml CHANGED
@@ -14,6 +14,11 @@ RSpec/ContextWording:
14
14
  - when
15
15
  - with
16
16
  - without
17
+ RSpec/ExampleLength:
18
+ CountAsOne:
19
+ - 'array'
20
+ - 'heredoc'
21
+ - 'method_call'
17
22
  RSpec/ImplicitExpect:
18
23
  EnforcedStyle: should
19
24
  RSpec/ImplicitSubject:
@@ -34,5 +39,3 @@ RSpec/MultipleExpectations:
34
39
  Enabled: false # recommend using `aggregate_failures`
35
40
  RSpec/SubjectStub: # allow stubbing subject
36
41
  Enabled: false # should only be used for methods *not* under test
37
- RSpec/StringAsInstanceDoubleConstant: # new in 3.1; already deprecated
38
- Enabled: false
data/.yoshiki-ruby.yml CHANGED
@@ -1,6 +1,3 @@
1
- require:
2
- - rubocop-rake
3
-
4
1
  AllCops:
5
2
  DisplayCopNames: true
6
3
  DisplayStyleGuide: true
@@ -135,6 +132,7 @@ Style/EndlessMethod: # new in 1.8
135
132
  Enabled: true
136
133
  EnforcedStyle: disallow # default is `allow_single_line`
137
134
  Style/FrozenStringLiteralComment:
135
+ EnforcedStyle: never # huzzah for ruby 3.4
138
136
  SafeAutoCorrect: true # default is `false`
139
137
  Style/HashSyntax:
140
138
  EnforcedShorthandSyntax: consistent # default is `always`
data/Gemfile CHANGED
@@ -1,5 +1,3 @@
1
- # frozen_string_literal: true
2
-
3
1
  source 'https://rubygems.org'
4
2
 
5
3
  # Specify your gem's dependencies in yoshiki.gemspec
data/Gemfile.lock CHANGED
@@ -1,20 +1,20 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yoshiki (9.0.0)
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)
12
- rubocop-rspec_rails (>= 2.30.0)
4
+ yoshiki (10.0.0.pre.1)
5
+ rubocop (= 1.72.2)
6
+ rubocop-capybara (= 2.21.0)
7
+ rubocop-factory_bot (= 2.26.1)
8
+ rubocop-performance (= 1.24.0)
9
+ rubocop-rails (= 2.30.1)
10
+ rubocop-rake (= 0.7.1)
11
+ rubocop-rspec (= 3.5.0)
12
+ rubocop-rspec_rails (= 2.30.0)
13
13
 
14
14
  GEM
15
15
  remote: https://rubygems.org/
16
16
  specs:
17
- activesupport (8.0.0)
17
+ activesupport (8.0.1)
18
18
  base64
19
19
  benchmark (>= 0.3)
20
20
  bigdecimal
@@ -30,33 +30,36 @@ GEM
30
30
  ast (2.4.2)
31
31
  base64 (0.2.0)
32
32
  benchmark (0.4.0)
33
- bigdecimal (3.1.8)
33
+ bigdecimal (3.1.9)
34
34
  coderay (1.1.3)
35
- concurrent-ruby (1.3.4)
36
- connection_pool (2.4.1)
35
+ concurrent-ruby (1.3.5)
36
+ connection_pool (2.5.0)
37
+ date (3.4.1)
37
38
  diff-lcs (1.5.1)
38
39
  drb (2.2.1)
39
- i18n (1.14.6)
40
+ i18n (1.14.7)
40
41
  concurrent-ruby (~> 1.0)
41
- json (2.9.0)
42
- language_server-protocol (3.17.0.3)
43
- logger (1.6.2)
42
+ json (2.10.1)
43
+ language_server-protocol (3.17.0.4)
44
+ lint_roller (1.1.0)
45
+ logger (1.6.6)
44
46
  method_source (1.1.0)
45
47
  minitest (5.25.4)
46
48
  parallel (1.26.3)
47
- parser (3.3.6.0)
49
+ parser (3.3.7.1)
48
50
  ast (~> 2.4.1)
49
51
  racc
50
52
  pry (0.14.2)
51
53
  coderay (~> 1.1)
52
54
  method_source (~> 1.0)
53
- psych (5.1.2)
55
+ psych (5.2.3)
56
+ date
54
57
  stringio
55
58
  racc (1.8.1)
56
- rack (3.1.8)
59
+ rack (3.1.10)
57
60
  rainbow (3.1.1)
58
61
  rake (13.2.1)
59
- regexp_parser (2.9.3)
62
+ regexp_parser (2.10.0)
60
63
  rspec (3.13.0)
61
64
  rspec-core (~> 3.13.0)
62
65
  rspec-expectations (~> 3.13.0)
@@ -70,43 +73,48 @@ GEM
70
73
  diff-lcs (>= 1.2.0, < 2.0)
71
74
  rspec-support (~> 3.13.0)
72
75
  rspec-support (3.13.1)
73
- rubocop (1.69.1)
76
+ rubocop (1.72.2)
74
77
  json (~> 2.3)
75
- language_server-protocol (>= 3.17.0)
78
+ language_server-protocol (~> 3.17.0.2)
79
+ lint_roller (~> 1.1.0)
76
80
  parallel (~> 1.10)
77
81
  parser (>= 3.3.0.2)
78
82
  rainbow (>= 2.2.2, < 4.0)
79
83
  regexp_parser (>= 2.9.3, < 3.0)
80
- rubocop-ast (>= 1.36.2, < 2.0)
84
+ rubocop-ast (>= 1.38.0, < 2.0)
81
85
  ruby-progressbar (~> 1.7)
82
86
  unicode-display_width (>= 2.4.0, < 4.0)
83
- rubocop-ast (1.36.2)
87
+ rubocop-ast (1.38.0)
84
88
  parser (>= 3.3.1.0)
85
89
  rubocop-capybara (2.21.0)
86
90
  rubocop (~> 1.41)
87
91
  rubocop-factory_bot (2.26.1)
88
92
  rubocop (~> 1.61)
89
- rubocop-performance (1.23.0)
90
- rubocop (>= 1.48.1, < 2.0)
91
- rubocop-ast (>= 1.31.1, < 2.0)
92
- rubocop-rails (2.27.0)
93
+ rubocop-performance (1.24.0)
94
+ lint_roller (~> 1.1)
95
+ rubocop (>= 1.72.1, < 2.0)
96
+ rubocop-ast (>= 1.38.0, < 2.0)
97
+ rubocop-rails (2.30.1)
93
98
  activesupport (>= 4.2.0)
99
+ lint_roller (~> 1.1)
94
100
  rack (>= 1.1)
95
- rubocop (>= 1.52.0, < 2.0)
96
- rubocop-ast (>= 1.31.1, < 2.0)
97
- rubocop-rake (0.6.0)
98
- rubocop (~> 1.0)
99
- rubocop-rspec (3.2.0)
100
- rubocop (~> 1.61)
101
+ rubocop (>= 1.72.1, < 2.0)
102
+ rubocop-ast (>= 1.38.0, < 2.0)
103
+ rubocop-rake (0.7.1)
104
+ lint_roller (~> 1.1)
105
+ rubocop (>= 1.72.1)
106
+ rubocop-rspec (3.5.0)
107
+ lint_roller (~> 1.1)
108
+ rubocop (~> 1.72, >= 1.72.1)
101
109
  rubocop-rspec_rails (2.30.0)
102
110
  rubocop (~> 1.61)
103
111
  rubocop-rspec (~> 3, >= 3.0.1)
104
112
  ruby-progressbar (1.13.0)
105
- securerandom (0.4.0)
106
- stringio (3.1.1)
113
+ securerandom (0.4.1)
114
+ stringio (3.1.3)
107
115
  tzinfo (2.0.6)
108
116
  concurrent-ruby (~> 1.0)
109
- unicode-display_width (3.1.2)
117
+ unicode-display_width (3.1.4)
110
118
  unicode-emoji (~> 4.0, >= 4.0.4)
111
119
  unicode-emoji (4.0.4)
112
120
  uri (1.0.2)
@@ -122,4 +130,4 @@ DEPENDENCIES
122
130
  yoshiki!
123
131
 
124
132
  BUNDLED WITH
125
- 2.5.23
133
+ 2.6.4
data/README.md CHANGED
@@ -45,6 +45,7 @@ inherit_gem:
45
45
 
46
46
  ## Ruby compatibility
47
47
 
48
+ - ruby 3.4+, use [~> 10.0][10.0]
48
49
  - ruby 3.0+, use [~> 9.0][9.0]
49
50
  - ruby 2.7, use [~> 8.0][8.0]
50
51
  - ruby 2.6, use [~> 7.0][7.0]
@@ -59,6 +60,7 @@ inherit_gem:
59
60
  [7.0]: https://gitlab.com/devfu/yoshiki/tags/v7.0.0
60
61
  [8.0]: https://gitlab.com/devfu/yoshiki/tags/v8.0.0
61
62
  [9.0]: https://gitlab.com/devfu/yoshiki/tags/v9.0.0
63
+ [9.0]: https://gitlab.com/devfu/yoshiki/tags/v10.0.0
62
64
 
63
65
  <!-- images -->
64
66
  [ci-image]: https://gitlab.com/devfu/yoshiki/badges/master/pipeline.svg
data/Rakefile CHANGED
@@ -1,5 +1,3 @@
1
- # frozen_string_literal: true
2
-
3
1
  require 'bundler/gem_tasks'
4
2
  require 'rspec/core/rake_task'
5
3
  require 'rubocop/rake_task'
@@ -1,5 +1,3 @@
1
- # frozen_string_literal: true
2
-
3
1
  # Code here should not cause rubocop to nag
4
2
  class Examples
5
3
 
@@ -1,7 +1,5 @@
1
- # frozen_string_literal: true
2
-
3
1
  module Yoshiki
4
2
 
5
- VERSION = '9.0.0'
3
+ VERSION = '10.0.0-1'.freeze
6
4
 
7
5
  end
data/lib/yoshiki.rb CHANGED
@@ -1,5 +1,3 @@
1
- # frozen_string_literal: true
2
-
3
1
  require 'yoshiki/version'
4
2
 
5
3
  # Dev Fu! Style
data/yoshiki.gemspec CHANGED
@@ -1,5 +1,3 @@
1
- # frozen_string_literal: true
2
-
3
1
  lib = File.expand_path 'lib', __dir__
4
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
3
  require 'yoshiki/version'
@@ -20,14 +18,14 @@ Gem::Specification.new do |spec|
20
18
 
21
19
  spec.metadata['rubygems_mfa_required'] = 'true'
22
20
 
23
- spec.required_ruby_version = '>= 3.0.0'
21
+ spec.required_ruby_version = '>= 3.4.0'
24
22
 
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'
32
- spec.add_dependency 'rubocop-rspec_rails', '>= 2.30.0'
23
+ spec.add_dependency 'rubocop', '1.72.2'
24
+ spec.add_dependency 'rubocop-capybara', '2.21.0'
25
+ spec.add_dependency 'rubocop-factory_bot', '2.26.1'
26
+ spec.add_dependency 'rubocop-performance', '1.24.0'
27
+ spec.add_dependency 'rubocop-rails', '2.30.1'
28
+ spec.add_dependency 'rubocop-rake', '0.7.1'
29
+ spec.add_dependency 'rubocop-rspec', '3.5.0'
30
+ spec.add_dependency 'rubocop-rspec_rails', '2.30.0'
33
31
  end
metadata CHANGED
@@ -1,125 +1,124 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yoshiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.0
4
+ version: 10.0.0.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BM5k
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-12-05 00:00:00.000000000 Z
10
+ date: 2025-02-19 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rubocop
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - ">="
16
+ - - '='
18
17
  - !ruby/object:Gem::Version
19
- version: 1.56.4
18
+ version: 1.72.2
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
- - - ">="
23
+ - - '='
25
24
  - !ruby/object:Gem::Version
26
- version: 1.56.4
25
+ version: 1.72.2
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: rubocop-capybara
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
- - - ">="
30
+ - - '='
32
31
  - !ruby/object:Gem::Version
33
- version: 2.19.0
32
+ version: 2.21.0
34
33
  type: :runtime
35
34
  prerelease: false
36
35
  version_requirements: !ruby/object:Gem::Requirement
37
36
  requirements:
38
- - - ">="
37
+ - - '='
39
38
  - !ruby/object:Gem::Version
40
- version: 2.19.0
39
+ version: 2.21.0
41
40
  - !ruby/object:Gem::Dependency
42
41
  name: rubocop-factory_bot
43
42
  requirement: !ruby/object:Gem::Requirement
44
43
  requirements:
45
- - - ">="
44
+ - - '='
46
45
  - !ruby/object:Gem::Version
47
- version: 2.24.0
46
+ version: 2.26.1
48
47
  type: :runtime
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
- - - ">="
51
+ - - '='
53
52
  - !ruby/object:Gem::Version
54
- version: 2.24.0
53
+ version: 2.26.1
55
54
  - !ruby/object:Gem::Dependency
56
55
  name: rubocop-performance
57
56
  requirement: !ruby/object:Gem::Requirement
58
57
  requirements:
59
- - - ">="
58
+ - - '='
60
59
  - !ruby/object:Gem::Version
61
- version: 1.20.2
60
+ version: 1.24.0
62
61
  type: :runtime
63
62
  prerelease: false
64
63
  version_requirements: !ruby/object:Gem::Requirement
65
64
  requirements:
66
- - - ">="
65
+ - - '='
67
66
  - !ruby/object:Gem::Version
68
- version: 1.20.2
67
+ version: 1.24.0
69
68
  - !ruby/object:Gem::Dependency
70
69
  name: rubocop-rails
71
70
  requirement: !ruby/object:Gem::Requirement
72
71
  requirements:
73
- - - ">="
72
+ - - '='
74
73
  - !ruby/object:Gem::Version
75
- version: 2.22.2
74
+ version: 2.30.1
76
75
  type: :runtime
77
76
  prerelease: false
78
77
  version_requirements: !ruby/object:Gem::Requirement
79
78
  requirements:
80
- - - ">="
79
+ - - '='
81
80
  - !ruby/object:Gem::Version
82
- version: 2.22.2
81
+ version: 2.30.1
83
82
  - !ruby/object:Gem::Dependency
84
83
  name: rubocop-rake
85
84
  requirement: !ruby/object:Gem::Requirement
86
85
  requirements:
87
- - - ">="
86
+ - - '='
88
87
  - !ruby/object:Gem::Version
89
- version: 0.6.0
88
+ version: 0.7.1
90
89
  type: :runtime
91
90
  prerelease: false
92
91
  version_requirements: !ruby/object:Gem::Requirement
93
92
  requirements:
94
- - - ">="
93
+ - - '='
95
94
  - !ruby/object:Gem::Version
96
- version: 0.6.0
95
+ version: 0.7.1
97
96
  - !ruby/object:Gem::Dependency
98
97
  name: rubocop-rspec
99
98
  requirement: !ruby/object:Gem::Requirement
100
99
  requirements:
101
- - - ">="
100
+ - - '='
102
101
  - !ruby/object:Gem::Version
103
- version: 2.25.0
102
+ version: 3.5.0
104
103
  type: :runtime
105
104
  prerelease: false
106
105
  version_requirements: !ruby/object:Gem::Requirement
107
106
  requirements:
108
- - - ">="
107
+ - - '='
109
108
  - !ruby/object:Gem::Version
110
- version: 2.25.0
109
+ version: 3.5.0
111
110
  - !ruby/object:Gem::Dependency
112
111
  name: rubocop-rspec_rails
113
112
  requirement: !ruby/object:Gem::Requirement
114
113
  requirements:
115
- - - ">="
114
+ - - '='
116
115
  - !ruby/object:Gem::Version
117
116
  version: 2.30.0
118
117
  type: :runtime
119
118
  prerelease: false
120
119
  version_requirements: !ruby/object:Gem::Requirement
121
120
  requirements:
122
- - - ">="
121
+ - - '='
123
122
  - !ruby/object:Gem::Version
124
123
  version: 2.30.0
125
124
  description: Dev Fu! Style for rubocop.
@@ -157,7 +156,6 @@ licenses:
157
156
  - MIT
158
157
  metadata:
159
158
  rubygems_mfa_required: 'true'
160
- post_install_message:
161
159
  rdoc_options: []
162
160
  require_paths:
163
161
  - lib
@@ -165,15 +163,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
165
163
  requirements:
166
164
  - - ">="
167
165
  - !ruby/object:Gem::Version
168
- version: 3.0.0
166
+ version: 3.4.0
169
167
  required_rubygems_version: !ruby/object:Gem::Requirement
170
168
  requirements:
171
169
  - - ">="
172
170
  - !ruby/object:Gem::Version
173
171
  version: '0'
174
172
  requirements: []
175
- rubygems_version: 3.5.23
176
- signing_key:
173
+ rubygems_version: 3.6.4
177
174
  specification_version: 4
178
175
  summary: Dev Fu! Style
179
176
  test_files: []