caliber 0.66.0 → 0.67.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 +12 -0
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 740107d7b19231503957d079fca13f36c0f0a3d3bbd193d01ed4a3abb94a9993
|
|
4
|
+
data.tar.gz: f21f7c2179f726a6e7e14448e4f766268d268acd02f7a8995bf84aa9ffcb748c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ffe6dbd5b03062b04b96ae5943136714df4b5f2cdcb5a1cf6a2d6790a818f056ba0d1cd401e0f18900e06dc1d491e064de649eb8ab2527dcf904bccd8c1e4fe
|
|
7
|
+
data.tar.gz: 6ec5950c9bb01fcb68d0142fea71bf859d30f49178e7b8dc7e971fa41cdd384ab7e2063e26c753d0c67234d9c9f9160d2cee19969eef3c338186f1966b9edbfe
|
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.67.0"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
8
|
spec.homepage = "https://alchemists.io/projects/caliber"
|
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.cert_chain = [Gem.default_cert_path]
|
|
24
24
|
|
|
25
25
|
spec.required_ruby_version = ">= 3.3", "<= 3.4"
|
|
26
|
-
spec.add_dependency "rubocop", "~> 1.
|
|
26
|
+
spec.add_dependency "rubocop", "~> 1.69"
|
|
27
27
|
spec.add_dependency "rubocop-capybara", "~> 2.21"
|
|
28
28
|
spec.add_dependency "rubocop-disable_syntax", "~> 0.1"
|
|
29
29
|
spec.add_dependency "rubocop-packaging", "~> 0.5"
|
data/config/ruby.yml
CHANGED
|
@@ -132,6 +132,8 @@ Lint/EmptyInPattern:
|
|
|
132
132
|
AllowComments: false
|
|
133
133
|
Lint/EmptyWhen:
|
|
134
134
|
AllowComments: false
|
|
135
|
+
Lint/HashNewWithKeywordArgumentsAsDefault:
|
|
136
|
+
Enabled: true
|
|
135
137
|
Lint/IncompatibleIoSelectWithFiberScheduler:
|
|
136
138
|
Enabled: true
|
|
137
139
|
Lint/ItWithoutArgumentsInBlock:
|
|
@@ -148,6 +150,8 @@ Lint/NoReturnInBeginEndBlocks:
|
|
|
148
150
|
Enabled: true
|
|
149
151
|
Lint/NumberedParameterAssignment:
|
|
150
152
|
Enabled: true
|
|
153
|
+
Lint/NumericOperationWithConstantResult:
|
|
154
|
+
Enabled: true
|
|
151
155
|
Lint/OrAssignmentToConstant:
|
|
152
156
|
Enabled: true
|
|
153
157
|
Lint/RedundantDirGlobSort:
|
|
@@ -172,6 +176,8 @@ Lint/UnexpectedBlockArity:
|
|
|
172
176
|
Enabled: true
|
|
173
177
|
Lint/UnmodifiedReduceAccumulator:
|
|
174
178
|
Enabled: true
|
|
179
|
+
Lint/UselessDefined:
|
|
180
|
+
Enabled: true
|
|
175
181
|
Lint/UselessNumericOperation:
|
|
176
182
|
Enabled: true
|
|
177
183
|
Lint/UselessRescue:
|
|
@@ -250,6 +256,8 @@ Style/ConcatArrayLiterals:
|
|
|
250
256
|
Enabled: true
|
|
251
257
|
Style/DataInheritance:
|
|
252
258
|
Enabled: true
|
|
259
|
+
Style/DigChain:
|
|
260
|
+
Enabled: true
|
|
253
261
|
Style/DirEmpty:
|
|
254
262
|
Enabled: true
|
|
255
263
|
Style/Documentation:
|
|
@@ -278,6 +286,8 @@ Style/FileRead:
|
|
|
278
286
|
Enabled: true
|
|
279
287
|
Style/FileWrite:
|
|
280
288
|
Enabled: true
|
|
289
|
+
Style/FileTouch:
|
|
290
|
+
Enabled: true
|
|
281
291
|
Style/GlobalStdStream:
|
|
282
292
|
Enabled: false
|
|
283
293
|
Style/HashConversion:
|
|
@@ -337,6 +347,8 @@ Style/NestedFileDirname:
|
|
|
337
347
|
Enabled: true
|
|
338
348
|
Style/NilLambda:
|
|
339
349
|
Enabled: true
|
|
350
|
+
Style/FileNull:
|
|
351
|
+
Enabled: true
|
|
340
352
|
Style/NumberedParameters:
|
|
341
353
|
Enabled: true
|
|
342
354
|
EnforcedStyle: disallow
|
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.67.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
|
35
35
|
3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
|
|
36
36
|
gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
|
|
37
37
|
-----END CERTIFICATE-----
|
|
38
|
-
date: 2024-
|
|
38
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: rubocop
|
|
@@ -43,14 +43,14 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '1.
|
|
46
|
+
version: '1.69'
|
|
47
47
|
type: :runtime
|
|
48
48
|
prerelease: false
|
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
51
|
- - "~>"
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '1.
|
|
53
|
+
version: '1.69'
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: rubocop-capybara
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
metadata.gz.sig
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
w�U%�.U�����?� I�5_�L�����,>i�$�v"�Eu0������
|
|
2
|
+
�L˪4��9���]
|