caliber 0.5.0 → 0.7.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 +1 -3
- data/caliber.gemspec +3 -3
- data/config/rspec.yml +3 -0
- data/config/ruby.yml +8 -4
- data.tar.gz.sig +0 -0
- metadata +6 -6
- 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: 6f593f62ec1d2ed871e3b9cf717f2b9971526960542505f6931f4d290aab73cc
|
|
4
|
+
data.tar.gz: 93403d73531f9125dbf248379ce47416784146a0978279ac937bd52f6db3be50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7da316700831c2a0d8d821daad015bdc28d3d4e208bdc2e416ab805fa1878887d1cc55c39309616f4de068eb7896a572f3feed35eedf4ef67c50e9ed8ca2386f
|
|
7
|
+
data.tar.gz: ba38bf9bffb4c6f3bed1cfdd04f497e3e46e5f04c9adc3b645fc0857589a91cd41be9068623ea64834c44bc22635abdbee3cd7512e5ab189eb2508e831444528
|
checksums.yaml.gz.sig
CHANGED
|
@@ -1,3 +1 @@
|
|
|
1
|
-
�
|
|
2
|
-
_B�Op�;���yA�B������A�
|
|
3
|
-
E_�k�@5����k3L=,�.x{� ,�!Z�]�E��e��
|
|
1
|
+
|k�/CՔ*�TA�%��I����?�ʼ���������v�����EG�H���6�+y�R�O�fVT �A�=��B�(��{���8�b�����sP�d?0r�xL��ϊL�'mH���� ������u�����y�;�y�H�I�)���b��R`��爘j�y�9��I��U��|9ا��[�-� &�#K_�u�Q�C���$�;*��r҆�(�o�I��!������w�z��
|
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.7.0"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
8
|
spec.homepage = "https://www.alchemists.io/projects/caliber"
|
|
@@ -22,10 +22,10 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.cert_chain = [Gem.default_cert_path]
|
|
23
23
|
|
|
24
24
|
spec.required_ruby_version = "~> 3.1"
|
|
25
|
-
spec.add_dependency "rubocop", "~> 1.
|
|
25
|
+
spec.add_dependency "rubocop", "~> 1.28"
|
|
26
26
|
spec.add_dependency "rubocop-performance", "~> 1.13"
|
|
27
27
|
spec.add_dependency "rubocop-rake", "~> 0.6"
|
|
28
|
-
spec.add_dependency "rubocop-rspec", "~> 2.
|
|
28
|
+
spec.add_dependency "rubocop-rspec", "~> 2.10"
|
|
29
29
|
|
|
30
30
|
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
|
|
31
31
|
spec.files = Dir["*.gemspec", "config/**/*", "lib/**/*"]
|
data/config/rspec.yml
CHANGED
|
@@ -4,6 +4,7 @@ RSpec/BeEq:
|
|
|
4
4
|
Enabled: true
|
|
5
5
|
RSpec/BeNil:
|
|
6
6
|
Enabled: true
|
|
7
|
+
EnforcedStyle: be
|
|
7
8
|
RSpec/ContextWording:
|
|
8
9
|
Prefixes:
|
|
9
10
|
- when
|
|
@@ -47,3 +48,5 @@ RSpec/Rails/AvoidSetupHook:
|
|
|
47
48
|
Enabled: true
|
|
48
49
|
RSpec/SubjectDeclaration:
|
|
49
50
|
Enabled: true
|
|
51
|
+
RSpec/VerifiedDoubleReference:
|
|
52
|
+
Enabled: true
|
data/config/ruby.yml
CHANGED
|
@@ -135,9 +135,6 @@ Lint/UnexpectedBlockArity:
|
|
|
135
135
|
Enabled: true
|
|
136
136
|
Lint/UnmodifiedReduceAccumulator:
|
|
137
137
|
Enabled: true
|
|
138
|
-
Lint/UselessMethodDefinition:
|
|
139
|
-
Enabled: true
|
|
140
|
-
AllowComments: false
|
|
141
138
|
Lint/UselessRuby2Keywords:
|
|
142
139
|
Enabled: true
|
|
143
140
|
Metrics/BlockLength:
|
|
@@ -154,7 +151,7 @@ Naming/BlockForwarding:
|
|
|
154
151
|
Naming/InclusiveLanguage:
|
|
155
152
|
Enabled: true
|
|
156
153
|
Naming/MethodName:
|
|
157
|
-
|
|
154
|
+
AllowedPatterns:
|
|
158
155
|
- Array
|
|
159
156
|
- BigDecimal
|
|
160
157
|
- Complex
|
|
@@ -175,6 +172,8 @@ Naming/VariableNumber:
|
|
|
175
172
|
- capture3
|
|
176
173
|
Naming/MethodParameterName:
|
|
177
174
|
AllowNamesEndingInNumbers: false
|
|
175
|
+
Security/CompoundHash:
|
|
176
|
+
Enabled: true
|
|
178
177
|
Security/IoMethods:
|
|
179
178
|
Enabled: true
|
|
180
179
|
Style/ArgumentsForwarding:
|
|
@@ -205,6 +204,8 @@ Style/EndlessMethod:
|
|
|
205
204
|
Enabled: true
|
|
206
205
|
Style/ExplicitBlockArgument:
|
|
207
206
|
Enabled: false
|
|
207
|
+
Style/FetchEnvVar:
|
|
208
|
+
Enabled: true
|
|
208
209
|
Style/FileRead:
|
|
209
210
|
Enabled: true
|
|
210
211
|
Style/FileWrite:
|
|
@@ -259,6 +260,8 @@ Style/NumberedParametersLimit:
|
|
|
259
260
|
Enabled: true
|
|
260
261
|
Style/NumericLiterals:
|
|
261
262
|
Enabled: false
|
|
263
|
+
Style/ObjectThen:
|
|
264
|
+
Enabled: true
|
|
262
265
|
Style/OptionHash:
|
|
263
266
|
Enabled: true
|
|
264
267
|
Style/OpenStructUse:
|
|
@@ -278,6 +281,7 @@ Style/RedundantSelfAssignmentBranch:
|
|
|
278
281
|
Enabled: true
|
|
279
282
|
Style/RedundantInitialize:
|
|
280
283
|
Enabled: true
|
|
284
|
+
AllowComments: false
|
|
281
285
|
Style/ReturnNil:
|
|
282
286
|
Enabled: true
|
|
283
287
|
Style/SafeNavigation:
|
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.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -28,7 +28,7 @@ cert_chain:
|
|
|
28
28
|
CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
|
|
29
29
|
RFE=
|
|
30
30
|
-----END CERTIFICATE-----
|
|
31
|
-
date: 2022-04-
|
|
31
|
+
date: 2022-04-21 00:00:00.000000000 Z
|
|
32
32
|
dependencies:
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: rubocop
|
|
@@ -36,14 +36,14 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '1.
|
|
39
|
+
version: '1.28'
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
44
|
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '1.
|
|
46
|
+
version: '1.28'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: rubocop-performance
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -78,14 +78,14 @@ dependencies:
|
|
|
78
78
|
requirements:
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '2.
|
|
81
|
+
version: '2.10'
|
|
82
82
|
type: :runtime
|
|
83
83
|
prerelease: false
|
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
|
86
86
|
- - "~>"
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: '2.
|
|
88
|
+
version: '2.10'
|
|
89
89
|
description:
|
|
90
90
|
email:
|
|
91
91
|
- brooke@alchemists.io
|
metadata.gz.sig
CHANGED
|
Binary file
|