caliber 0.12.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +2 -0
- data/caliber.gemspec +2 -2
- data/config/ruby.yml +7 -1
- 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: 3e1fd9bb5563032f1eb5f927ba1ba83c2bdb8667b68cc2ef06811679f7ce91d3
|
4
|
+
data.tar.gz: 0bc9cc5335058485df6b7cd6a758e291ccd55d46af04f11ed686d31a7d61ea62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc3193d57f91e9cccb93010d0ffbcd08509ecd35fe81c21acc40e41b1b03a8a6b8426418f6b5ece993aa6fe7f2daab575f83cdb47b5f6e2c501c1b52e0c277b7
|
7
|
+
data.tar.gz: 000a8d741ed18f15dc29abeb42b5b328fabc7d377597775cb32bd2ad7420a2cc594c87c759a028bba23761d622fe6d0a809308c246339efe900f836766ced041
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/README.adoc
CHANGED
@@ -7,6 +7,8 @@
|
|
7
7
|
This gem provides global link:https://docs.rubocop.org/rubocop[RuboCop] configurations for ensuring
|
8
8
|
high quality _and_ consistent software development practices.
|
9
9
|
|
10
|
+
_Due to the ever changing nature of the RuboCop gem ecosystem -- and the fact that it's very easy to fall behind quickly -- this gem takes an aggressive approach to staying up to date with latest changes within the RuboCop community. This also means this gem will probably never reach 1.0.0 status because new changes are being introduced in each minor release. That said, if you always want to be on top of recent changes -- because you know how costly technical debt is -- then this gem has you covered. 🎉_
|
11
|
+
|
10
12
|
toc::[]
|
11
13
|
|
12
14
|
== Features
|
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.14.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.36"
|
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.12"
|
data/config/ruby.yml
CHANGED
@@ -85,6 +85,8 @@ Layout/SingleLineBlockChain:
|
|
85
85
|
Enabled: true
|
86
86
|
Layout/SpaceBeforeBrackets:
|
87
87
|
Enabled: true
|
88
|
+
Layout/SpaceInLambdaLiteral:
|
89
|
+
EnforcedStyle: require_space
|
88
90
|
Layout/SpaceInsideHashLiteralBraces:
|
89
91
|
EnforcedStyle: no_space
|
90
92
|
Layout/TrailingWhitespace:
|
@@ -152,7 +154,7 @@ Lint/UnmodifiedReduceAccumulator:
|
|
152
154
|
Lint/UselessRuby2Keywords:
|
153
155
|
Enabled: true
|
154
156
|
Metrics/BlockLength:
|
155
|
-
|
157
|
+
AllowedMethods:
|
156
158
|
- ips
|
157
159
|
- refine
|
158
160
|
Metrics/ParameterLists:
|
@@ -244,6 +246,8 @@ Style/InPatternThen:
|
|
244
246
|
Enabled: true
|
245
247
|
Style/IpAddresses:
|
246
248
|
Enabled: true
|
249
|
+
Style/MagicCommentFormat:
|
250
|
+
Enabled: true
|
247
251
|
Style/MapCompactWithConditionalBlock:
|
248
252
|
Enabled: true
|
249
253
|
Style/MapToHash:
|
@@ -309,6 +313,8 @@ Style/Send:
|
|
309
313
|
Enabled: true
|
310
314
|
Style/SignalException:
|
311
315
|
EnforcedStyle: semantic
|
316
|
+
Style/StabbyLambdaParentheses:
|
317
|
+
EnforcedStyle: require_no_parentheses
|
312
318
|
Style/StaticClass:
|
313
319
|
Enabled: true
|
314
320
|
Style/StringChars:
|
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.14.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-09-01 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.36'
|
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.36'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rubocop-performance
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '0'
|
147
147
|
requirements: []
|
148
|
-
rubygems_version: 3.3.
|
148
|
+
rubygems_version: 3.3.21
|
149
149
|
signing_key:
|
150
150
|
specification_version: 4
|
151
151
|
summary: Provides a high quality style guide and configuration for your projects.
|
metadata.gz.sig
CHANGED
Binary file
|