caliber 0.94.0 → 0.96.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 +3 -3
- data/config/ruby.yml +14 -1
- 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: 1ba8b08735e821aaa65eb1e78ba16cb96414028d3e72d4651e6effdf0c74c376
|
|
4
|
+
data.tar.gz: ae09696df5a2edd7542a469c3088b0a7e9c30f572e65d8bcaa81c882e9baba2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efcbf895c11246e3813d4ae98ecb96916f6521b6d2149b08702012c01a811b309bb5423e46bdfa0f80ddea1bad32efd6354d31658cfccf6da68ebe497efbfcb2
|
|
7
|
+
data.tar.gz: d12b1e6eb372e1841c96485b54092a6e940e68a7e04ec512e7c63b5c966a326d9b14a945a6c3cd8655b68364d2ac6c6dd9cdd9de3f6a3efe2dbe6291270756b4
|
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.96.0"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
8
|
spec.homepage = "https://alchemists.io/projects/caliber"
|
|
@@ -24,11 +24,11 @@ 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.90"
|
|
28
28
|
spec.add_dependency "rubocop-capybara", "~> 2.23"
|
|
29
29
|
spec.add_dependency "rubocop-disable_syntax", "~> 0.2"
|
|
30
30
|
spec.add_dependency "rubocop-packaging", "~> 0.6"
|
|
31
|
-
spec.add_dependency "rubocop-performance", "~> 1.
|
|
31
|
+
spec.add_dependency "rubocop-performance", "~> 1.27"
|
|
32
32
|
spec.add_dependency "rubocop-rake", "~> 0.7"
|
|
33
33
|
spec.add_dependency "rubocop-rspec", "~> 3.10"
|
|
34
34
|
spec.add_dependency "rubocop-thread_safety", "~> 0.7"
|
data/config/ruby.yml
CHANGED
|
@@ -106,6 +106,8 @@ Lint/AmbiguousOperatorPrecedence:
|
|
|
106
106
|
Enabled: true
|
|
107
107
|
Lint/AmbiguousRange:
|
|
108
108
|
Enabled: true
|
|
109
|
+
Lint/ArgumentMismatch:
|
|
110
|
+
Enabled: true
|
|
109
111
|
Lint/ArrayLiteralInRegexp:
|
|
110
112
|
Enabled: true
|
|
111
113
|
Lint/ConstantOverwrittenInRescue:
|
|
@@ -118,6 +120,8 @@ Lint/DataDefineOverride:
|
|
|
118
120
|
Enabled: true
|
|
119
121
|
Lint/DeprecatedConstants:
|
|
120
122
|
Enabled: true
|
|
123
|
+
Lint/DeprecatedReference:
|
|
124
|
+
Enabled: false
|
|
121
125
|
Lint/DuplicateBranch:
|
|
122
126
|
Enabled: true
|
|
123
127
|
Lint/DuplicateMagicComment:
|
|
@@ -156,6 +160,8 @@ Lint/LiteralAssignmentInCondition:
|
|
|
156
160
|
Enabled: true
|
|
157
161
|
Lint/MixedCaseRange:
|
|
158
162
|
Enabled: true
|
|
163
|
+
Lint/NameTypo:
|
|
164
|
+
Enabled: true
|
|
159
165
|
Lint/NonAtomicFileOperation:
|
|
160
166
|
Enabled: true
|
|
161
167
|
Lint/NoReturnInBeginEndBlocks:
|
|
@@ -166,6 +172,8 @@ Lint/NumericOperationWithConstantResult:
|
|
|
166
172
|
Enabled: true
|
|
167
173
|
Lint/OrAssignmentToConstant:
|
|
168
174
|
Enabled: true
|
|
175
|
+
Lint/UnusedPrivateMethod:
|
|
176
|
+
Enabled: true
|
|
169
177
|
Lint/RedundantDirGlobSort:
|
|
170
178
|
Enabled: true
|
|
171
179
|
Lint/RedundantRegexpQuantifiers:
|
|
@@ -180,6 +188,8 @@ Lint/RequireRelativeSelfPath:
|
|
|
180
188
|
Enabled: true
|
|
181
189
|
Lint/SharedMutableDefault:
|
|
182
190
|
Enabled: true
|
|
191
|
+
Lint/SuperArgumentMismatch:
|
|
192
|
+
Enabled: true
|
|
183
193
|
Lint/SuppressedExceptionInNumberConversion:
|
|
184
194
|
Enabled: true
|
|
185
195
|
Lint/SymbolConversion:
|
|
@@ -255,7 +265,6 @@ Security/CompoundHash:
|
|
|
255
265
|
Security/IoMethods:
|
|
256
266
|
Enabled: true
|
|
257
267
|
Style/AccessModifierDeclarations:
|
|
258
|
-
AllowModifiersOnSymbols: false
|
|
259
268
|
AllowModifiersOnAttrs: false
|
|
260
269
|
Style/AmbiguousEndlessMethodDefinition:
|
|
261
270
|
Enabled: false
|
|
@@ -293,6 +302,8 @@ Style/DataInheritance:
|
|
|
293
302
|
Enabled: true
|
|
294
303
|
Style/DigChain:
|
|
295
304
|
Enabled: true
|
|
305
|
+
Style/DirectiveScope:
|
|
306
|
+
Enabled: true
|
|
296
307
|
Style/DirEmpty:
|
|
297
308
|
Enabled: true
|
|
298
309
|
Style/Documentation:
|
|
@@ -528,6 +539,8 @@ Style/SwapValues:
|
|
|
528
539
|
Enabled: true
|
|
529
540
|
Style/TallyMethod:
|
|
530
541
|
Enabled: true
|
|
542
|
+
Style/TimeNow:
|
|
543
|
+
Enabled: true
|
|
531
544
|
Style/TopLevelMethodDefinition:
|
|
532
545
|
Enabled: true
|
|
533
546
|
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.96.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.90'
|
|
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.90'
|
|
52
52
|
- !ruby/object:Gem::Dependency
|
|
53
53
|
name: rubocop-capybara
|
|
54
54
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -97,14 +97,14 @@ dependencies:
|
|
|
97
97
|
requirements:
|
|
98
98
|
- - "~>"
|
|
99
99
|
- !ruby/object:Gem::Version
|
|
100
|
-
version: '1.
|
|
100
|
+
version: '1.27'
|
|
101
101
|
type: :runtime
|
|
102
102
|
prerelease: false
|
|
103
103
|
version_requirements: !ruby/object:Gem::Requirement
|
|
104
104
|
requirements:
|
|
105
105
|
- - "~>"
|
|
106
106
|
- !ruby/object:Gem::Version
|
|
107
|
-
version: '1.
|
|
107
|
+
version: '1.27'
|
|
108
108
|
- !ruby/object:Gem::Dependency
|
|
109
109
|
name: rubocop-rake
|
|
110
110
|
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.19
|
|
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
|