caliber 0.27.0 → 0.29.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 +4 -4
- data/config/rspec.yml +6 -0
- data/config/ruby.yml +8 -2
- data.tar.gz.sig +0 -0
- metadata +33 -26
- 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: 829b9b20b06ea5cef4ef23cec9c1e014b945967c325ae162de4eaf1cfed8b8c2
|
|
4
|
+
data.tar.gz: 9b64463190c4b8f25b210655c9e0c11e69b578c059c3fdea414b66d89d3a80b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c57610025a2f767b95d9a9446e1d588e6fa8355ef36eae9480b35cdd06be2b7469b8934ef85f31c72249bd4610f14843d574079ef391b595b6fb670c4fc78e29
|
|
7
|
+
data.tar.gz: bf5755a756d1bbff360f3c657ce737a9a133848caf225925c18f6e264a03b3f345710e6b97c230892871cccd4209518c991459c525e86906c43c05e2125b0313
|
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.29.0"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
8
|
spec.homepage = "https://alchemists.io/projects/caliber"
|
|
@@ -23,12 +23,12 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.cert_chain = [Gem.default_cert_path]
|
|
24
24
|
|
|
25
25
|
spec.required_ruby_version = "~> 3.2"
|
|
26
|
-
spec.add_dependency "rubocop", "~> 1.
|
|
26
|
+
spec.add_dependency "rubocop", "~> 1.49"
|
|
27
27
|
spec.add_dependency "rubocop-capybara", "~> 2.17"
|
|
28
28
|
spec.add_dependency "rubocop-performance", "~> 1.16"
|
|
29
29
|
spec.add_dependency "rubocop-rake", "~> 0.6"
|
|
30
|
-
spec.add_dependency "rubocop-rspec", "~> 2.
|
|
31
|
-
spec.add_dependency "rubocop-thread_safety", "~> 0.
|
|
30
|
+
spec.add_dependency "rubocop-rspec", "~> 2.19"
|
|
31
|
+
spec.add_dependency "rubocop-thread_safety", "~> 0.5"
|
|
32
32
|
|
|
33
33
|
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
|
|
34
34
|
spec.files = Dir["*.gemspec", "config/**/*", "lib/**/*"]
|
data/config/rspec.yml
CHANGED
|
@@ -63,6 +63,8 @@ RSpec/NoExpectationExample:
|
|
|
63
63
|
Enabled: true
|
|
64
64
|
RSpec/PendingWithoutReason:
|
|
65
65
|
Enabled: true
|
|
66
|
+
RSpec/RedundantAround:
|
|
67
|
+
Enabled: true
|
|
66
68
|
RSpec/Rails/AvoidSetupHook:
|
|
67
69
|
Enabled: true
|
|
68
70
|
RSpec/Rails/HaveHttpStatus:
|
|
@@ -71,6 +73,10 @@ RSpec/Rails/InferredSpecType:
|
|
|
71
73
|
Enabled: true
|
|
72
74
|
RSpec/Rails/MinitestAssertions:
|
|
73
75
|
Enabled: true
|
|
76
|
+
RSpec/Rails/TravelAround:
|
|
77
|
+
Enabled: true
|
|
78
|
+
RSpec/SkipBlockInsideExample:
|
|
79
|
+
Enabled: true
|
|
74
80
|
RSpec/SortMetadata:
|
|
75
81
|
Enabled: true
|
|
76
82
|
RSpec/SubjectDeclaration:
|
data/config/ruby.yml
CHANGED
|
@@ -221,6 +221,10 @@ Style/ComparableClamp:
|
|
|
221
221
|
Enabled: true
|
|
222
222
|
Style/ConcatArrayLiterals:
|
|
223
223
|
Enabled: true
|
|
224
|
+
Style/DataInheritance:
|
|
225
|
+
Enabled: true
|
|
226
|
+
Style/DirEmpty:
|
|
227
|
+
Enabled: true
|
|
224
228
|
Style/Documentation:
|
|
225
229
|
Enabled: false
|
|
226
230
|
Style/DocumentDynamicEvalDefinition:
|
|
@@ -241,12 +245,12 @@ Style/ExplicitBlockArgument:
|
|
|
241
245
|
Enabled: false
|
|
242
246
|
Style/FetchEnvVar:
|
|
243
247
|
Enabled: true
|
|
248
|
+
Style/FileEmpty:
|
|
249
|
+
Enabled: true
|
|
244
250
|
Style/FileRead:
|
|
245
251
|
Enabled: true
|
|
246
252
|
Style/FileWrite:
|
|
247
253
|
Enabled: true
|
|
248
|
-
Style/FormatStringToken:
|
|
249
|
-
EnforcedStyle: template
|
|
250
254
|
Style/GlobalStdStream:
|
|
251
255
|
Enabled: false
|
|
252
256
|
Style/HashConversion:
|
|
@@ -332,6 +336,8 @@ Style/RedundantEach:
|
|
|
332
336
|
Enabled: true
|
|
333
337
|
Style/RedundantHeredocDelimiterQuotes:
|
|
334
338
|
Enabled: true
|
|
339
|
+
Style/RedundantLineContinuation:
|
|
340
|
+
Enabled: false
|
|
335
341
|
Style/RedundantSelfAssignmentBranch:
|
|
336
342
|
Enabled: true
|
|
337
343
|
Style/RedundantStringEscape:
|
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.29.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -10,25 +10,32 @@ bindir: bin
|
|
|
10
10
|
cert_chain:
|
|
11
11
|
- |
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
13
|
+
MIIEeDCCAuCgAwIBAgIBATANBgkqhkiG9w0BAQsFADBBMQ8wDQYDVQQDDAZicm9v
|
|
14
|
+
a2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQBGRYC
|
|
15
|
+
aW8wHhcNMjMwMzIyMTYxNDQxWhcNMjUwMzIxMTYxNDQxWjBBMQ8wDQYDVQQDDAZi
|
|
16
|
+
cm9va2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQB
|
|
17
|
+
GRYCaW8wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCro8tj5/E1Hg88
|
|
18
|
+
f4qfiwPVd2zJQHvdYt4GHVvuHRRgx4HGhJuNp+4BId08RBn7V6V1MW6MY3kezRBs
|
|
19
|
+
M+7QOQ4b1xNLTvY7FYQB1wGK5a4x7TTokDrPYQxDB2jmsdDYCzVbIMrAvUfcecRi
|
|
20
|
+
khyGZCdByiiCl4fKv77P12tTT+NfsvXkLt/AYCGwjOUyGKTQ01Z6eC09T27GayPH
|
|
21
|
+
QQvIkakyFgcJtzSyGzs8bzK5q9u7wQ12MNTjJoXzW69lqp0oNvDylu81EiSUb5S6
|
|
22
|
+
QzzPxZBiRB1sgtbt1gUbVI262ZDq1gR+HxPFmp+Cgt7ZLIJZAtesQvtcMzseXpfn
|
|
23
|
+
hpmm0Sw22KGhRAy/mqHBRhDl5HqS1SJp2Ko3lcnpXeFResp0HNlt8NSu13vhC08j
|
|
24
|
+
GUHU9MyIXbFOsnp3K3ADrAVjPWop8EZkmUR3MV/CUm00w2cZHCSGiXl1KMpiVKvk
|
|
25
|
+
Ywr1gd2ZME4QLSo+EXUtLxDUa/W3xnBS8dBOuMMz02FPWYr3PN8CAwEAAaN7MHkw
|
|
26
|
+
CQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFAFgmv0tYMZnItuPycSM
|
|
27
|
+
F5wykJEVMB8GA1UdEQQYMBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMB8GA1UdEgQY
|
|
28
|
+
MBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMA0GCSqGSIb3DQEBCwUAA4IBgQAX+EGY
|
|
29
|
+
9RLYGxF1VLZz+G1ACQc4uyrCB6kXwI06kzUa5dF9tPXqTX9ffnz3/W8ck2IQhKzu
|
|
30
|
+
MKO2FVijzbDWTsZeZGglS4E+4Jxpau1lU9HhOIcKolv6LeC6UdALTFudY+GLb8Xw
|
|
31
|
+
REXgaJkjzzhkUSILmEnRwEbY08dVSl7ZAaxVI679vfI2yapLlIwpbBgmQTiTvPr3
|
|
32
|
+
qyyLUno9flYEOv9fmGHunSrM+gE0/0niGTXa5GgXBXYGS2he4LQGgSBfGp/cTwMU
|
|
33
|
+
rDKJRcusZ12lNBeDfgqACz/BBJF8FLodgk6rGMRZz7+ZmjjHEmpG5bQpR6Q2BuWL
|
|
34
|
+
XMtYk/QzaWuhiR7pWjiF8jbdd7RO6or0ohq7iFkokz/5xrtQ/vPzU2RQ3Qc6YaKw
|
|
35
|
+
3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
|
|
36
|
+
gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
|
|
30
37
|
-----END CERTIFICATE-----
|
|
31
|
-
date: 2023-03
|
|
38
|
+
date: 2023-04-03 00:00:00.000000000 Z
|
|
32
39
|
dependencies:
|
|
33
40
|
- !ruby/object:Gem::Dependency
|
|
34
41
|
name: rubocop
|
|
@@ -36,14 +43,14 @@ dependencies:
|
|
|
36
43
|
requirements:
|
|
37
44
|
- - "~>"
|
|
38
45
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '1.
|
|
46
|
+
version: '1.49'
|
|
40
47
|
type: :runtime
|
|
41
48
|
prerelease: false
|
|
42
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
50
|
requirements:
|
|
44
51
|
- - "~>"
|
|
45
52
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '1.
|
|
53
|
+
version: '1.49'
|
|
47
54
|
- !ruby/object:Gem::Dependency
|
|
48
55
|
name: rubocop-capybara
|
|
49
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -92,28 +99,28 @@ dependencies:
|
|
|
92
99
|
requirements:
|
|
93
100
|
- - "~>"
|
|
94
101
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: '2.
|
|
102
|
+
version: '2.19'
|
|
96
103
|
type: :runtime
|
|
97
104
|
prerelease: false
|
|
98
105
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
106
|
requirements:
|
|
100
107
|
- - "~>"
|
|
101
108
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: '2.
|
|
109
|
+
version: '2.19'
|
|
103
110
|
- !ruby/object:Gem::Dependency
|
|
104
111
|
name: rubocop-thread_safety
|
|
105
112
|
requirement: !ruby/object:Gem::Requirement
|
|
106
113
|
requirements:
|
|
107
114
|
- - "~>"
|
|
108
115
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: '0.
|
|
116
|
+
version: '0.5'
|
|
110
117
|
type: :runtime
|
|
111
118
|
prerelease: false
|
|
112
119
|
version_requirements: !ruby/object:Gem::Requirement
|
|
113
120
|
requirements:
|
|
114
121
|
- - "~>"
|
|
115
122
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: '0.
|
|
123
|
+
version: '0.5'
|
|
117
124
|
description:
|
|
118
125
|
email:
|
|
119
126
|
- brooke@alchemists.io
|
|
@@ -160,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
160
167
|
- !ruby/object:Gem::Version
|
|
161
168
|
version: '0'
|
|
162
169
|
requirements: []
|
|
163
|
-
rubygems_version: 3.4.
|
|
170
|
+
rubygems_version: 3.4.10
|
|
164
171
|
signing_key:
|
|
165
172
|
specification_version: 4
|
|
166
173
|
summary: Provides a high quality style guide and configuration for your projects.
|
metadata.gz.sig
CHANGED
|
Binary file
|