armitage-rubocop 1.3.1.1 → 1.10.0

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: 6b53318fc5d75e3b7f804776a311944fe23127642126a1392b2fb2fc81d815ff
4
- data.tar.gz: 99e48a94c3ec1a265623deebc79c25ecd7660ed818ad81054686fcb700b5beb7
3
+ metadata.gz: 8afbab1ecfa368603af11b10060d60e87d42477cd64b8e9401fdd6e440c23cbf
4
+ data.tar.gz: 55bc896c32fd888d69abf34d32fe9d257ddd61dbcb6a6de830c285d1c60acb71
5
5
  SHA512:
6
- metadata.gz: abe8fad07125c511a9e427e92823bc41e36b703248b043fe5f98ca4a9156398a7bee675149f4a9505716115c3e32d9b7a34a22704ee70f89b193e860a6ed08d4
7
- data.tar.gz: e119e27885f140e993982b1739bcb753721ec2e50a8027994eb99a65247311ea0b34b153174198134e430153e5f23a338c42e6c7035eb5411634bcc5fbf00089
6
+ metadata.gz: 1c9abb332a11f23d27dc575295938f87b79c0d8830bd437376b36056942a76a4b68a794d017b8a0bd262a16877d95a788255ce2e4e7436591a7b469ed07dffc9
7
+ data.tar.gz: 632d104cf20aea5ea7e9c68a651506f1d013c4be36356086c6e3570e5fd1953b369df38f329cd4212e727ffe27204dff8a4ebe6784de03e2a99b287583c4a1e7
data/.gitignore CHANGED
@@ -7,7 +7,6 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
  .rspec_status
10
- /Gemfile.lock
11
10
  .ruby-version
12
11
  gemfiles/*.lock
13
12
  *.gem
data/Gemfile.lock ADDED
@@ -0,0 +1,78 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ armitage-rubocop (1.8.1)
5
+ rubocop (= 1.10.0)
6
+ rubocop-performance (= 1.9.2)
7
+ rubocop-rails (= 2.9.1)
8
+ rubocop-rake (= 0.5.1)
9
+ rubocop-rspec (= 2.2.0)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ activesupport (6.1.3)
15
+ concurrent-ruby (~> 1.0, >= 1.0.2)
16
+ i18n (>= 1.6, < 2)
17
+ minitest (>= 5.1)
18
+ tzinfo (~> 2.0)
19
+ zeitwerk (~> 2.3)
20
+ ast (2.4.2)
21
+ coderay (1.1.3)
22
+ concurrent-ruby (1.1.8)
23
+ i18n (1.8.9)
24
+ concurrent-ruby (~> 1.0)
25
+ method_source (1.0.0)
26
+ minitest (5.14.4)
27
+ parallel (1.20.1)
28
+ parser (3.0.0.0)
29
+ ast (~> 2.4.1)
30
+ pry (0.14.0)
31
+ coderay (~> 1.1)
32
+ method_source (~> 1.0)
33
+ rack (2.2.3)
34
+ rainbow (3.0.0)
35
+ rake (13.0.3)
36
+ regexp_parser (2.1.1)
37
+ rexml (3.2.4)
38
+ rubocop (1.10.0)
39
+ parallel (~> 1.10)
40
+ parser (>= 3.0.0.0)
41
+ rainbow (>= 2.2.2, < 4.0)
42
+ regexp_parser (>= 1.8, < 3.0)
43
+ rexml
44
+ rubocop-ast (>= 1.2.0, < 2.0)
45
+ ruby-progressbar (~> 1.7)
46
+ unicode-display_width (>= 1.4.0, < 3.0)
47
+ rubocop-ast (1.4.1)
48
+ parser (>= 2.7.1.5)
49
+ rubocop-performance (1.9.2)
50
+ rubocop (>= 0.90.0, < 2.0)
51
+ rubocop-ast (>= 0.4.0)
52
+ rubocop-rails (2.9.1)
53
+ activesupport (>= 4.2.0)
54
+ rack (>= 1.1)
55
+ rubocop (>= 0.90.0, < 2.0)
56
+ rubocop-rake (0.5.1)
57
+ rubocop
58
+ rubocop-rspec (2.2.0)
59
+ rubocop (~> 1.0)
60
+ rubocop-ast (>= 1.1.0)
61
+ ruby-progressbar (1.11.0)
62
+ tzinfo (2.0.4)
63
+ concurrent-ruby (~> 1.0)
64
+ unicode-display_width (2.0.0)
65
+ zeitwerk (2.4.2)
66
+
67
+ PLATFORMS
68
+ ruby
69
+ x86_64-darwin-20
70
+
71
+ DEPENDENCIES
72
+ armitage-rubocop!
73
+ bundler (~> 2.2)
74
+ pry (~> 0.14)
75
+ rake (~> 13.0)
76
+
77
+ BUNDLED WITH
78
+ 2.2.3
data/Rakefile CHANGED
@@ -5,20 +5,21 @@ require 'rubocop/rake_task'
5
5
  require 'open3'
6
6
  require 'yaml'
7
7
  require 'rubocop'
8
+ require 'rubocop-performance'
8
9
  require 'rubocop-rspec'
9
10
  require 'rubocop-rails'
10
- require 'rubocop-performance'
11
11
  require 'rubocop-rake'
12
12
 
13
13
  RuboCop::RakeTask.new(:rubocop) do |t|
14
14
  config_path = File.expand_path(File.join('.rubocop.yml'), __dir__)
15
15
  t.options = ['--config', config_path]
16
- t.requires << 'rubocop-rspec'
17
16
  t.requires << 'rubocop-performance'
18
17
  t.requires << 'rubocop-rails'
18
+ t.requires << 'rubocop-rspec'
19
19
  t.requires << 'rubocop-rake'
20
20
  end
21
21
 
22
+ ARMITAGE_RUBOCOP_PATH = Pathname.new(__FILE__).join('../.rubocop.yml')
22
23
  NON_CHECKABLE_COPS = %w[Rails].freeze # NOTE: Global "Rails" cop has only `Enabled` option
23
24
 
24
25
  # rubocop:disable Rails/RakeEnvironment
@@ -78,58 +79,17 @@ namespace :armitage_rubocop do
78
79
 
79
80
  desc 'Checks that all defined cops can be used'
80
81
  task :recognizable_cops do
81
- yamls = Dir[Pathname.new(__FILE__).join('../lib/**/*.yml')]
82
- invalid_cops = Hash.new { |h, k| h[k] = +'' }
83
-
84
- # NOTE: strongly rubocop-related realization
85
- # - see https://github.com/rubocop-hq/rubocop/blob/master/lib/rubocop/config.rb
86
- # - see https://github.com/rubocop-hq/rubocop/blob/master/lib/rubocop/config_loader.rb
87
- # - RuboCop::Config#validate
88
- # - RuboCop::Config#warn_about_unrecognized_cops
89
- # - RuboCop::ConfigLoader.load_file
90
- # - RuboCop::ConfigLoader.default_configuration
91
- yamls.each do |yaml_file|
92
- rubocop_config = RuboCop::ConfigLoader.load_file(yaml_file)
93
-
94
- # NOTE: validate cop existence
95
- rubocop_config.each_key do |cop|
96
- next if RuboCop::ConfigLoader.default_configuration.key?(cop)
97
- next if RuboCop::Cop::Cop.registry.contains_cop_matching?([cop])
98
- next if cop == 'inherit_mode'
99
-
100
- invalid_cops[cop] = "\e[31mBAD COP\e[0m"
101
- end
102
-
103
- # NOTE: validate cop params
104
- rubocop_config.each_key do |cop|
105
- next if invalid_cops.key?(cop)
106
-
107
- invalid_params = Set.new
108
-
109
- rubocop_config[cop].each_key do |cop_param|
110
- next if RuboCop::ConfigValidator::COMMON_PARAMS.include?(cop_param)
111
- next if NON_CHECKABLE_COPS.include?(cop)
112
- next if RuboCop::ConfigLoader.default_configuration[cop].key?(cop_param)
113
-
114
- invalid_params << "\e[35m#{cop_param}\e[0m"
115
- end
116
-
117
- next if invalid_params.empty?
118
-
119
- invalid_cops[cop] = "\e[31mBAD PARAMS\e[0m: #{invalid_params.to_a.join(', ')}"
120
- end
121
- end
122
-
123
- if invalid_cops.empty?
124
- puts "[\e[32mCOP RECOGNITION CHECK\e[0m] => \e[1;33mall cops are recognizable!\e[0m"
125
- else
126
- invalid_cops_message = invalid_cops.each_pair.map do |cop, message|
127
- "[\e[32m#{cop}\e[0m]\t- #{message}"
128
- end.join("\n")
82
+ RuboCop::ConfigLoader.load_file(ARMITAGE_RUBOCOP_PATH)
83
+ # TODO: validate each configured cop individually
84
+ puts "[\e[32mCOP RECOGNITION CHECK\e[0m] => \e[1;33mall cops are recognizable!\e[0m"
85
+ rescue
86
+ abort "[\e[31mCOP RECOGNITION CHECK\e[0m] => some cops can not be fully recognized!\n" \
87
+ "Run rake validation:recognize_and_show to show which cops have incompatabilities."
88
+ end
129
89
 
130
- abort "[\e[31mCOP RECOGNITION CHECK\e[0m] => some cops can not be fully recognized:\n" \
131
- "#{invalid_cops_message}"
132
- end
90
+ desc 'Show rubocop\'s validation result output'
91
+ task :recognize_and_show do
92
+ RuboCop::ConfigLoader.load_file(ARMITAGE_RUBOCOP_PATH) rescue nil
133
93
  end
134
94
  end
135
95
  end
@@ -4,7 +4,7 @@ lib = File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.version = '1.3.1.1'
7
+ spec.version = '1.10.0'
8
8
 
9
9
  spec.name = 'armitage-rubocop'
10
10
  spec.license = 'MIT'
@@ -22,13 +22,13 @@ Gem::Specification.new do |spec|
22
22
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
23
  end
24
24
 
25
- spec.add_dependency 'rubocop', '= 1.3.1'
26
- spec.add_dependency 'rubocop-performance', '= 1.9.0'
27
- spec.add_dependency 'rubocop-rails', '= 2.8.1'
28
- spec.add_dependency 'rubocop-rspec', '= 2.0.0'
25
+ spec.add_dependency 'rubocop', '= 1.10.0'
26
+ spec.add_dependency 'rubocop-performance', '= 1.9.2'
27
+ spec.add_dependency 'rubocop-rails', '= 2.9.1'
28
+ spec.add_dependency 'rubocop-rspec', '= 2.2.0'
29
29
  spec.add_dependency 'rubocop-rake', '= 0.5.1'
30
30
 
31
- spec.add_development_dependency 'bundler'
32
- spec.add_development_dependency 'rake'
33
- spec.add_development_dependency 'pry'
31
+ spec.add_development_dependency 'bundler', '~> 2.2'
32
+ spec.add_development_dependency 'rake', '~> 13.0'
33
+ spec.add_development_dependency 'pry', '~> 0.14'
34
34
  end
@@ -1,3 +1,8 @@
1
+ Gemspec/DateAssignment:
2
+ Enabled: true
3
+ Include:
4
+ - '**/*.gemspec'
5
+
1
6
  Gemspec/DuplicatedAssignment:
2
7
  Enabled: true
3
8
 
@@ -111,6 +111,9 @@ Layout/EmptyLineBetweenDefs:
111
111
  Enabled: true
112
112
  NumberOfEmptyLines: 1
113
113
  AllowAdjacentOneLineDefs: false
114
+ EmptyLineBetweenMethodDefs: true
115
+ EmptyLineBetweenClassDefs: true
116
+ EmptyLineBetweenModuleDefs: true
114
117
 
115
118
  Layout/EmptyLines:
116
119
  Enabled: true
@@ -315,6 +318,9 @@ Layout/SpaceBeforeBlockBraces:
315
318
  EnforcedStyle: space
316
319
  EnforcedStyleForEmptyBraces: space
317
320
 
321
+ Layout/SpaceBeforeBrackets:
322
+ Enabled: false
323
+
318
324
  Layout/SpaceBeforeComma:
319
325
  Enabled: true
320
326
 
data/lib/common/lint.yml CHANGED
@@ -1,6 +1,9 @@
1
- Lint/AmbiguousBlockAssociation:
1
+ Lint/AmbiguousAssignment:
2
2
  Enabled: false
3
3
 
4
+ Lint/AmbiguousBlockAssociation:
5
+ Enabled: true
6
+
4
7
  Lint/AmbiguousOperator:
5
8
  Enabled: false
6
9
 
@@ -36,6 +39,9 @@ Lint/ConstantResolution:
36
39
  Lint/Debugger:
37
40
  Enabled: true
38
41
 
42
+ Lint/DeprecatedConstants:
43
+ Enabled: true
44
+
39
45
  Lint/DeprecatedClassMethods:
40
46
  Enabled: true
41
47
 
@@ -48,6 +54,8 @@ Lint/DisjunctiveAssignmentInConstructor:
48
54
 
49
55
  Lint/DuplicateBranch:
50
56
  Enabled: true
57
+ IgnoreLiteralBranches: false
58
+ IgnoreConstantBranches: false
51
59
 
52
60
  Lint/DuplicateCaseCondition:
53
61
  Enabled: true
@@ -158,12 +166,18 @@ Lint/InterpolationCheck:
158
166
  Enabled: true
159
167
  AutoCorrect: true
160
168
 
169
+ Lint/LambdaWithoutLiteralBlock:
170
+ Enabled: true
171
+
161
172
  Lint/LiteralAsCondition:
162
173
  Enabled: true
163
174
 
164
175
  Lint/LiteralInInterpolation:
165
176
  Enabled: true
166
177
 
178
+ Lint/SymbolConversion:
179
+ Enabled: true
180
+
167
181
  Lint/Loop:
168
182
  Enabled: true
169
183
  AutoCorrect: true
@@ -200,6 +214,12 @@ Lint/NonLocalExitFromIterator:
200
214
  Lint/NumberConversion:
201
215
  Enabled: false
202
216
 
217
+ Lint/NumberedParameterAssignment:
218
+ Enabled: true
219
+
220
+ Lint/OrAssignmentToConstant:
221
+ Enabled: true
222
+
203
223
  Lint/OrderedMagicComments:
204
224
  Enabled: true
205
225
 
@@ -225,6 +245,9 @@ Lint/RaiseException:
225
245
  Lint/RandOne:
226
246
  Enabled: true
227
247
 
248
+ Lint/RedundantDirGlobSort:
249
+ Enabled: true
250
+
228
251
  Lint/RedundantSafeNavigation:
229
252
  Enabled: true
230
253
  AllowedMethods:
@@ -301,6 +324,12 @@ Lint/TopLevelReturnWithArgument:
301
324
  Lint/TrailingCommaInAttributeDeclaration:
302
325
  Enabled: true
303
326
 
327
+ Lint/TripleQuotes:
328
+ Enabled: false
329
+
330
+ Lint/UnexpectedBlockArity:
331
+ Enabled: false
332
+
304
333
  Lint/UnderscorePrefixedVariableName:
305
334
  Enabled: false
306
335
 
@@ -324,6 +353,7 @@ Lint/RedundantRequireStatement:
324
353
 
325
354
  Lint/RedundantSplatExpansion:
326
355
  Enabled: true
356
+ AllowPercentLiteralArrayArgument: true
327
357
 
328
358
  Lint/UnreachableCode:
329
359
  Enabled: true
@@ -1,13 +1,16 @@
1
1
  Metrics/AbcSize:
2
2
  Enabled: true
3
3
  Max: 19
4
+ CountRepeatedAttributes: true
4
5
  IgnoredMethods: []
5
6
 
6
7
  Metrics/BlockLength:
7
8
  Enabled: true
8
9
  CountComments: false
10
+ CountAsOne: []
9
11
  Max: 25
10
- ExcludedMethods: []
12
+ IgnoredMethods:
13
+ - refine
11
14
  Exclude:
12
15
  - Rakefile
13
16
  - spec/**/*
@@ -32,6 +35,8 @@ Metrics/MethodLength:
32
35
  Enabled: true
33
36
  Max: 25
34
37
  CountComments: false
38
+ CountAsOne: []
39
+ IgnoredMethods: []
35
40
 
36
41
  Metrics/ModuleLength:
37
42
  Enabled: true
@@ -41,6 +46,7 @@ Metrics/ModuleLength:
41
46
  Metrics/ParameterLists:
42
47
  Enabled: true
43
48
  Max: 5
49
+ MaxOptionalParameters: 3
44
50
  CountKeywordArgs: true
45
51
 
46
52
  Metrics/PerceivedComplexity:
@@ -71,6 +71,7 @@ Naming/MethodParameterName:
71
71
  Naming/VariableName:
72
72
  Enabled: true
73
73
  EnforcedStyle: snake_case
74
+ AllowedIdentifiers: []
74
75
 
75
76
  Naming/VariableNumber:
76
77
  Enabled: true
@@ -1,5 +1,5 @@
1
1
  Performance/ArraySemiInfiniteRangeSlice:
2
- Enabled: true
2
+ Enabled: false
3
3
 
4
4
  Performance/AncestorsInclude:
5
5
  Enabled: true
data/lib/common/rails.yml CHANGED
@@ -33,6 +33,12 @@ Rails/ApplicationController:
33
33
  Rails/ApplicationMailer:
34
34
  Enabled: false
35
35
 
36
+ Rails/AttributeDefaultBlockValue:
37
+ Enabled: true
38
+
39
+ Rails/ArelStar:
40
+ Enabled: true
41
+
36
42
  Rails/RakeEnvironment:
37
43
  Enabled: true
38
44
  AutoCorrect: true
@@ -271,6 +277,9 @@ Rails/UnknownEnv:
271
277
  Rails/Validation:
272
278
  Enabled: true
273
279
 
280
+ Rails/WhereEquals:
281
+ Enabled: true
282
+
274
283
  Rails/WhereExists:
275
284
  Enabled: false
276
285
  EnforcedStyle: exists
data/lib/common/style.yml CHANGED
@@ -113,6 +113,7 @@ Style/CommentAnnotation:
113
113
 
114
114
  Style/CommentedKeyword:
115
115
  Enabled: false
116
+ AutoCorrect: true
116
117
 
117
118
  Style/ConditionalAssignment:
118
119
  Enabled: false
@@ -177,6 +178,10 @@ Style/EmptyMethod:
177
178
  Enabled: true
178
179
  EnforcedStyle: compact
179
180
 
181
+ Style/EndlessMethod:
182
+ Enabled: true
183
+ EnforcedStyle: allow_single_line
184
+
180
185
  Style/Encoding:
181
186
  Enabled: false
182
187
 
@@ -186,6 +191,7 @@ Style/EndBlock:
186
191
 
187
192
  Style/EvalWithLocation:
188
193
  Enabled: true
194
+ AutoCorrect: true
189
195
 
190
196
  Style/EvenOdd:
191
197
  Enabled: true
@@ -216,6 +222,7 @@ Style/FormatStringToken:
216
222
  Enabled: true
217
223
  MaxUnannotatedPlaceholdersAllowed: 1
218
224
  EnforcedStyle: annotated
225
+ IgnoredMethods: []
219
226
 
220
227
  Style/FrozenStringLiteralComment:
221
228
  Enabled: true
@@ -237,6 +244,12 @@ Style/HashAsLastArrayItem:
237
244
  EnforcedStyle: braces
238
245
  AutoCorrect: true
239
246
 
247
+ Style/HashConversion:
248
+ Enabled: false
249
+
250
+ Style/HashExcept:
251
+ Enabled: true
252
+
240
253
  Style/HashLikeCase:
241
254
  Enabled: false
242
255
  MinBranchesCount: 4
@@ -259,6 +272,9 @@ Style/HashTransformValues:
259
272
  Style/IdenticalConditionalBranches:
260
273
  Enabled: true
261
274
 
275
+ Style/IfWithBooleanLiteralBranches:
276
+ Enabled: true
277
+
262
278
  Style/IfInsideElse:
263
279
  Enabled: true
264
280
  AllowIfModifier: true
@@ -351,6 +367,7 @@ Style/MultilineMemoization:
351
367
 
352
368
  Style/MultilineMethodSignature:
353
369
  Enabled: false
370
+ AutoCorrect: true
354
371
 
355
372
  Style/MultilineTernaryOperator:
356
373
  Enabled: false
@@ -466,6 +483,9 @@ Style/RaiseArgs:
466
483
  Style/RandomWithOffset:
467
484
  Enabled: true
468
485
 
486
+ Style/RedundantArgument:
487
+ Enabled: false
488
+
469
489
  Style/RedundantAssignment:
470
490
  Enabled: true
471
491
 
@@ -669,6 +689,7 @@ Style/RedundantSort:
669
689
 
670
690
  Style/SoleNestedConditional:
671
691
  Enabled: true
692
+ AutoCorrect: true
672
693
  AllowModifier: true
673
694
 
674
695
  Style/UnpackFirst:
data/lib/rspec/rspec.yml CHANGED
@@ -95,6 +95,7 @@ RSpec/FilePath:
95
95
 
96
96
  RSpec/Focus:
97
97
  Enabled: true
98
+ AutoCorrect: true
98
99
 
99
100
  RSpec/HookArgument:
100
101
  Enabled: false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: armitage-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1.1
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rustam Ibragimov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-18 00:00:00.000000000 Z
11
+ date: 2021-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 1.3.1
19
+ version: 1.10.0
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.3.1
26
+ version: 1.10.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-performance
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 1.9.0
33
+ version: 1.9.2
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 1.9.0
40
+ version: 1.9.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubocop-rails
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 2.8.1
47
+ version: 2.9.1
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 2.8.1
54
+ version: 2.9.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rubocop-rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 2.0.0
61
+ version: 2.2.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 2.0.0
68
+ version: 2.2.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rubocop-rake
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -84,44 +84,44 @@ dependencies:
84
84
  name: bundler
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '0'
89
+ version: '2.2'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '0'
96
+ version: '2.2'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rake
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ">="
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '0'
103
+ version: '13.0'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ">="
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '0'
110
+ version: '13.0'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: pry
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ">="
115
+ - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: '0'
117
+ version: '0.14'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ">="
122
+ - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: '0'
124
+ version: '0.14'
125
125
  description: 'A set of rubocop settings used in my own projects.Support for: vanilla
126
126
  ruby, rspec, rails.'
127
127
  email:
@@ -135,6 +135,7 @@ files:
135
135
  - ".yamllint"
136
136
  - CODE_OF_CONDUCT.md
137
137
  - Gemfile
138
+ - Gemfile.lock
138
139
  - LICENSE.txt
139
140
  - README.md
140
141
  - Rakefile
@@ -179,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
179
180
  - !ruby/object:Gem::Version
180
181
  version: '0'
181
182
  requirements: []
182
- rubygems_version: 3.2.0.rc.1
183
+ rubygems_version: 3.2.3
183
184
  signing_key:
184
185
  specification_version: 4
185
186
  summary: A set of rubocop settings