caliber 0.88.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/caliber.gemspec +2 -2
- data/config/ruby.yml +28 -0
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e2670fe670092feb787fe68262ea1a6e17c9cd271d0e7c2180274c3768914d8
|
|
4
|
+
data.tar.gz: b940d941b4b02e59789c886b492affc290b9a4c276716af266b584179ae0ac99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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:
|
|
@@ -317,6 +321,8 @@ Style/FetchEnvVar:
|
|
|
317
321
|
Enabled: true
|
|
318
322
|
Style/FileEmpty:
|
|
319
323
|
Enabled: true
|
|
324
|
+
Style/FileOpen:
|
|
325
|
+
Enabled: true
|
|
320
326
|
Style/FileRead:
|
|
321
327
|
Enabled: true
|
|
322
328
|
Style/FileWrite:
|
|
@@ -362,6 +368,8 @@ Style/MapCompactWithConditionalBlock:
|
|
|
362
368
|
Enabled: true
|
|
363
369
|
Style/MapIntoArray:
|
|
364
370
|
Enabled: true
|
|
371
|
+
Style/MapJoin:
|
|
372
|
+
Enabled: true
|
|
365
373
|
Style/MapToHash:
|
|
366
374
|
Enabled: true
|
|
367
375
|
Style/MapToSet:
|
|
@@ -405,12 +413,18 @@ Style/NumericLiterals:
|
|
|
405
413
|
Enabled: false
|
|
406
414
|
Style/ObjectThen:
|
|
407
415
|
Enabled: true
|
|
416
|
+
Style/OneClassPerFile:
|
|
417
|
+
Enabled: true
|
|
418
|
+
Exclude:
|
|
419
|
+
- bin/benchmark
|
|
408
420
|
Style/OptionHash:
|
|
409
421
|
Enabled: true
|
|
410
422
|
Style/OpenStructUse:
|
|
411
423
|
Enabled: true
|
|
412
424
|
Style/OperatorMethodCall:
|
|
413
425
|
Enabled: true
|
|
426
|
+
Style/PartitionInsteadOfDoubleSelect:
|
|
427
|
+
Enabled: true
|
|
414
428
|
Style/PercentLiteralDelimiters:
|
|
415
429
|
PreferredDelimiters:
|
|
416
430
|
"%w": "[]"
|
|
@@ -418,8 +432,12 @@ Style/PercentLiteralDelimiters:
|
|
|
418
432
|
"%i": "[]"
|
|
419
433
|
"%I": "[]"
|
|
420
434
|
"%r": "()"
|
|
435
|
+
Style/PredicateWithKind:
|
|
436
|
+
Enabled: true
|
|
421
437
|
Style/QuotedSymbols:
|
|
422
438
|
Enabled: true
|
|
439
|
+
Style/ReduceToHash:
|
|
440
|
+
Enabled: true
|
|
423
441
|
Style/RedundantArgument:
|
|
424
442
|
Enabled: true
|
|
425
443
|
Style/RedundantArrayConstructor:
|
|
@@ -442,6 +460,8 @@ Style/RedundantHeredocDelimiterQuotes:
|
|
|
442
460
|
Enabled: true
|
|
443
461
|
Style/RedundantLineContinuation:
|
|
444
462
|
Enabled: true
|
|
463
|
+
Style/RedundantMinMaxBy:
|
|
464
|
+
Enabled: true
|
|
445
465
|
Style/RedundantRegexpArgument:
|
|
446
466
|
Enabled: true
|
|
447
467
|
Style/RedundantRegexpConstructor:
|
|
@@ -450,6 +470,8 @@ Style/RedundantSelfAssignmentBranch:
|
|
|
450
470
|
Enabled: true
|
|
451
471
|
Style/RedundantStringEscape:
|
|
452
472
|
Enabled: true
|
|
473
|
+
Style/RedundantStructKeywordInit:
|
|
474
|
+
Enabled: true
|
|
453
475
|
Style/RedundantInitialize:
|
|
454
476
|
Enabled: true
|
|
455
477
|
AllowComments: false
|
|
@@ -469,6 +491,10 @@ Style/SafeNavigation:
|
|
|
469
491
|
Enabled: false
|
|
470
492
|
Style/SafeNavigationChainLength:
|
|
471
493
|
Enabled: false
|
|
494
|
+
Style/SelectByKind:
|
|
495
|
+
Enabled: true
|
|
496
|
+
Style/SelectByRange:
|
|
497
|
+
Enabled: true
|
|
472
498
|
Style/SelectByRegexp:
|
|
473
499
|
Enabled: true
|
|
474
500
|
Style/Send:
|
|
@@ -500,6 +526,8 @@ Style/SuperWithArgsParentheses:
|
|
|
500
526
|
Enabled: false
|
|
501
527
|
Style/SwapValues:
|
|
502
528
|
Enabled: true
|
|
529
|
+
Style/TallyMethod:
|
|
530
|
+
Enabled: true
|
|
503
531
|
Style/TopLevelMethodDefinition:
|
|
504
532
|
Enabled: true
|
|
505
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|