caliber 0.87.0 → 0.89.0

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: e2350959cd059a11154dcd60a1c8b808115d5a94acd995b2261bf098f240f3e7
4
- data.tar.gz: 655fae7be9bade5f7288f56b9dad9c079ee1994a6cd7a9994c8c560c945e38b9
3
+ metadata.gz: 0e2670fe670092feb787fe68262ea1a6e17c9cd271d0e7c2180274c3768914d8
4
+ data.tar.gz: b940d941b4b02e59789c886b492affc290b9a4c276716af266b584179ae0ac99
5
5
  SHA512:
6
- metadata.gz: 9840b59eb7367257118ebbe9818f8bc1a667ba8253b360c90b00e557b605e43f301fec677880cd1e321566e7c88ddffd7d12a4ed06683c8bf90fe98e787a71ca
7
- data.tar.gz: e7f6bed97a4978f02ab8ea94ee4d46ce4e7f413033ce95994ebfbf562e90ac2ae8628cf4d6c5cc077dfa0b7dc3a65ff67b2af63ed59a3582025e8306073efc75
6
+ metadata.gz: 5c74a2823e42e6ac9fb6fadd9060aebe0325d60ba4dd7d8c81d31fedfba3173b21721f036dc4dffce54de2020f3695d105f29b52d83bd16071099f99cf3fbce5
7
+ data.tar.gz: 4a8e788b7abc5c9af3818907433d9ffd62d26aa4f7eadb44678e12ac703b353c2eba382d5dcdde2e1964c4d88e4ac8f0308a3e43b932983ca291e7d0bfdeed21
checksums.yaml.gz.sig CHANGED
Binary file
data/caliber.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "caliber"
5
- spec.version = "0.87.0"
5
+ spec.version = "0.89.0"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://alchemists.io/projects/caliber"
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.required_ruby_version = ">= 4.0"
26
26
 
27
- spec.add_dependency "rubocop", "~> 1.82"
27
+ spec.add_dependency "rubocop", "~> 1.85"
28
28
  spec.add_dependency "rubocop-capybara", "~> 2.22"
29
29
  spec.add_dependency "rubocop-disable_syntax", "~> 0.2"
30
30
  spec.add_dependency "rubocop-packaging", "~> 0.6"
data/config/ruby.yml CHANGED
@@ -114,6 +114,8 @@ Lint/ConstantReassignment:
114
114
  Enabled: true
115
115
  Lint/CopDirectiveSyntax:
116
116
  Enabled: true
117
+ Lint/DataDefineOverride:
118
+ Enabled: true
117
119
  Lint/DeprecatedConstants:
118
120
  Enabled: true
119
121
  Lint/DuplicateBranch:
@@ -192,6 +194,8 @@ Lint/UnexpectedBlockArity:
192
194
  Enabled: true
193
195
  Lint/UnmodifiedReduceAccumulator:
194
196
  Enabled: true
197
+ Lint/UnreachablePatternBranch:
198
+ Enabled: true
195
199
  Lint/UselessConstantScoping:
196
200
  Enabled: true
197
201
  Lint/UselessDefaultValueArgument:
@@ -297,6 +301,8 @@ Style/DocumentDynamicEvalDefinition:
297
301
  Enabled: false
298
302
  Style/DoubleNegation:
299
303
  EnforcedStyle: forbidden
304
+ Style/EmptyClassDefinition:
305
+ Enabled: true
300
306
  Style/EmptyHeredoc:
301
307
  Enabled: true
302
308
  Style/EmptyLiteral:
@@ -315,6 +321,8 @@ Style/FetchEnvVar:
315
321
  Enabled: true
316
322
  Style/FileEmpty:
317
323
  Enabled: true
324
+ Style/FileOpen:
325
+ Enabled: true
318
326
  Style/FileRead:
319
327
  Enabled: true
320
328
  Style/FileWrite:
@@ -360,6 +368,8 @@ Style/MapCompactWithConditionalBlock:
360
368
  Enabled: true
361
369
  Style/MapIntoArray:
362
370
  Enabled: true
371
+ Style/MapJoin:
372
+ Enabled: true
363
373
  Style/MapToHash:
364
374
  Enabled: true
365
375
  Style/MapToSet:
@@ -386,6 +396,8 @@ Style/MultilineMethodSignature:
386
396
  Enabled: true
387
397
  Style/NegatedIfElseCondition:
388
398
  Enabled: true
399
+ Style/NegativeArrayIndex:
400
+ Enabled: true
389
401
  Style/NestedFileDirname:
390
402
  Enabled: true
391
403
  Style/NilLambda:
@@ -401,12 +413,18 @@ Style/NumericLiterals:
401
413
  Enabled: false
402
414
  Style/ObjectThen:
403
415
  Enabled: true
416
+ Style/OneClassPerFile:
417
+ Enabled: true
418
+ Exclude:
419
+ - bin/benchmark
404
420
  Style/OptionHash:
405
421
  Enabled: true
406
422
  Style/OpenStructUse:
407
423
  Enabled: true
408
424
  Style/OperatorMethodCall:
409
425
  Enabled: true
426
+ Style/PartitionInsteadOfDoubleSelect:
427
+ Enabled: true
410
428
  Style/PercentLiteralDelimiters:
411
429
  PreferredDelimiters:
412
430
  "%w": "[]"
@@ -414,8 +432,12 @@ Style/PercentLiteralDelimiters:
414
432
  "%i": "[]"
415
433
  "%I": "[]"
416
434
  "%r": "()"
435
+ Style/PredicateWithKind:
436
+ Enabled: true
417
437
  Style/QuotedSymbols:
418
438
  Enabled: true
439
+ Style/ReduceToHash:
440
+ Enabled: true
419
441
  Style/RedundantArgument:
420
442
  Enabled: true
421
443
  Style/RedundantArrayConstructor:
@@ -438,6 +460,8 @@ Style/RedundantHeredocDelimiterQuotes:
438
460
  Enabled: true
439
461
  Style/RedundantLineContinuation:
440
462
  Enabled: true
463
+ Style/RedundantMinMaxBy:
464
+ Enabled: true
441
465
  Style/RedundantRegexpArgument:
442
466
  Enabled: true
443
467
  Style/RedundantRegexpConstructor:
@@ -446,11 +470,15 @@ Style/RedundantSelfAssignmentBranch:
446
470
  Enabled: true
447
471
  Style/RedundantStringEscape:
448
472
  Enabled: true
473
+ Style/RedundantStructKeywordInit:
474
+ Enabled: true
449
475
  Style/RedundantInitialize:
450
476
  Enabled: true
451
477
  AllowComments: false
452
478
  Style/RedundantInterpolationUnfreeze:
453
479
  Enabled: true
480
+ Style/ReverseFind:
481
+ Enabled: true
454
482
  Style/ExactRegexpMatch:
455
483
  Enabled: true
456
484
  Style/ReturnNil:
@@ -463,6 +491,10 @@ Style/SafeNavigation:
463
491
  Enabled: false
464
492
  Style/SafeNavigationChainLength:
465
493
  Enabled: false
494
+ Style/SelectByKind:
495
+ Enabled: true
496
+ Style/SelectByRange:
497
+ Enabled: true
466
498
  Style/SelectByRegexp:
467
499
  Enabled: true
468
500
  Style/Send:
@@ -494,6 +526,8 @@ Style/SuperWithArgsParentheses:
494
526
  Enabled: false
495
527
  Style/SwapValues:
496
528
  Enabled: true
529
+ Style/TallyMethod:
530
+ Enabled: true
497
531
  Style/TopLevelMethodDefinition:
498
532
  Enabled: true
499
533
  Style/YAMLFileRead:
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caliber
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.87.0
4
+ version: 0.89.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -41,14 +41,14 @@ dependencies:
41
41
  requirements:
42
42
  - - "~>"
43
43
  - !ruby/object:Gem::Version
44
- version: '1.82'
44
+ version: '1.85'
45
45
  type: :runtime
46
46
  prerelease: false
47
47
  version_requirements: !ruby/object:Gem::Requirement
48
48
  requirements:
49
49
  - - "~>"
50
50
  - !ruby/object:Gem::Version
51
- version: '1.82'
51
+ version: '1.85'
52
52
  - !ruby/object:Gem::Dependency
53
53
  name: rubocop-capybara
54
54
  requirement: !ruby/object:Gem::Requirement
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
195
  - !ruby/object:Gem::Version
196
196
  version: '0'
197
197
  requirements: []
198
- rubygems_version: 4.0.3
198
+ rubygems_version: 4.0.7
199
199
  specification_version: 4
200
200
  summary: A global, high quality, and constantly updated RuboCop configuration.
201
201
  test_files: []
metadata.gz.sig CHANGED
Binary file