caliber 0.9.0 → 0.10.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/README.adoc +4 -0
- data/caliber.gemspec +2 -2
- data/config/rspec.yml +4 -0
- data/config/ruby.yml +8 -2
- data.tar.gz.sig +0 -0
- metadata +5 -5
- 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: 2931b2a87cd0e05894443ee49bef96ba51c0f73662463f1a8378a48ab1219cd0
|
|
4
|
+
data.tar.gz: bfe4c03b3d0fe932ab682722c486ef99c75e1a8366da3d93d056e14bf6e41631
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ba8f18e896741230d2625cc1d162e75372c2fb5a4f3b09bbbe6b65e0070cd44851de70caa66b81ddfc2a34e4f5bf25179f377d41440acbbf4d6296ea3a8d1c0
|
|
7
|
+
data.tar.gz: a8e0a8a8ed2db7b945dabde291e768e5a314067513bc620686f73d77a1a7bb41f9d3b3c19fcfa61c0792c0bd1395b7dbc7ae6c6d3c115920d122e633277c7490
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -228,6 +228,10 @@ To test, run:
|
|
|
228
228
|
bundle exec rake
|
|
229
229
|
----
|
|
230
230
|
|
|
231
|
+
== Troubleshooting
|
|
232
|
+
|
|
233
|
+
If you are having issues requiring additional RuboCop gems in conjunction with what this gem provides for you, there is a link:https://github.com/rubocop/rubocop/issues/5251#issuecomment-1142638815[known issue and workaround] to this problem. Until the RuboCop team can fix the bug, you'll have to re-require your dependencies until then.
|
|
234
|
+
|
|
231
235
|
== link:https://www.alchemists.io/policies/license[License]
|
|
232
236
|
|
|
233
237
|
== link:https://www.alchemists.io/policies/security[Security]
|
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.10.0"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
8
|
spec.homepage = "https://www.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.1"
|
|
26
|
-
spec.add_dependency "rubocop", "~> 1.
|
|
26
|
+
spec.add_dependency "rubocop", "~> 1.31"
|
|
27
27
|
spec.add_dependency "rubocop-performance", "~> 1.14"
|
|
28
28
|
spec.add_dependency "rubocop-rake", "~> 0.6"
|
|
29
29
|
spec.add_dependency "rubocop-rspec", "~> 2.11"
|
data/config/rspec.yml
CHANGED
data/config/ruby.yml
CHANGED
|
@@ -7,8 +7,6 @@ AllCops:
|
|
|
7
7
|
- "vendor/**/*"
|
|
8
8
|
Bundler/InsecureProtocolSource:
|
|
9
9
|
AllowHttpProtocol: false
|
|
10
|
-
Gemspec/DateAssignment:
|
|
11
|
-
Enabled: true
|
|
12
10
|
Gemspec/DependencyVersion:
|
|
13
11
|
Enabled: true
|
|
14
12
|
Gemspec/RequireMFA:
|
|
@@ -60,6 +58,10 @@ Layout/FirstMethodArgumentLineBreak:
|
|
|
60
58
|
Enabled: true
|
|
61
59
|
Layout/FirstMethodParameterLineBreak:
|
|
62
60
|
Enabled: true
|
|
61
|
+
Layout/LineContinuationLeadingSpace:
|
|
62
|
+
Enabled: true
|
|
63
|
+
Layout/LineContinuationSpacing:
|
|
64
|
+
Enabled: true
|
|
63
65
|
Layout/LineEndStringConcatenationIndentation:
|
|
64
66
|
Enabled: true
|
|
65
67
|
IndentationWidth: 0
|
|
@@ -91,6 +93,8 @@ Lint/AmbiguousOperatorPrecedence:
|
|
|
91
93
|
Enabled: true
|
|
92
94
|
Lint/AmbiguousRange:
|
|
93
95
|
Enabled: true
|
|
96
|
+
Lint/ConstantOverwrittenInRescue:
|
|
97
|
+
Enabled: true
|
|
94
98
|
Lint/DeprecatedConstants:
|
|
95
99
|
Enabled: true
|
|
96
100
|
Lint/DuplicateBranch:
|
|
@@ -117,6 +121,8 @@ Lint/IncompatibleIoSelectWithFiberScheduler:
|
|
|
117
121
|
Enabled: true
|
|
118
122
|
Lint/LambdaWithoutLiteralBlock:
|
|
119
123
|
Enabled: true
|
|
124
|
+
Lint/NonAtomicFileOperation:
|
|
125
|
+
Enabled: true
|
|
120
126
|
Lint/NoReturnInBeginEndBlocks:
|
|
121
127
|
Enabled: true
|
|
122
128
|
Lint/NumberedParameterAssignment:
|
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.10.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-
|
|
31
|
+
date: 2022-06-27 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.31'
|
|
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.31'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: rubocop-performance
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
131
|
version: '0'
|
|
132
132
|
requirements: []
|
|
133
|
-
rubygems_version: 3.3.
|
|
133
|
+
rubygems_version: 3.3.16
|
|
134
134
|
signing_key:
|
|
135
135
|
specification_version: 4
|
|
136
136
|
summary: Provides a high quality style guide and configuration for your projects.
|
metadata.gz.sig
CHANGED
|
Binary file
|