caliber 0.11.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abf98012ec71c1f05b56d04e55b88afa167eb66cbb01a397c1c5331b4b754672
4
- data.tar.gz: 8767f2441b60400a3bbf905f892adafdbc77629a7631a381c8edf00b906a0048
3
+ metadata.gz: 46fddaf12afeb3eb9ab9e007e6d9a1adc2bd3c2d879dc0d5d9928540a0bb51e9
4
+ data.tar.gz: 8d0d5b8639bf344dab3d54fe2be4f7fda7f19e45ebeea1e2d0a72544c361d1fa
5
5
  SHA512:
6
- metadata.gz: aa92ec7cb89bedba40046638e4acf223fd758ca2821e83483a2e38ea9d82912dc4553f8cdd0f2b6a5c6828f25f1a3df8ce4e0b0d5fbb7f19af5ff917685c0a29
7
- data.tar.gz: 3e0d1dc212b330961de16210050471dae15b62909b1074ca1fde311f617cd2312e592780bdf6fc92643cf3c3a3fb6ca7f49e4bc8292ff346206d8a225d3461e6
6
+ metadata.gz: fb33dd0c20c65044e3782ce9d02a516d900ceb0864de3380908695a4d912f8c2c93c4fb4051cace87b03585b8c60ee27c7f0ca2d0a2b35c70f5f9dbbd9f042ea
7
+ data.tar.gz: 4d820507f05f62b1e7c018696bf0040a26ee405f0ed8993cfba8424bc979d356dad9daa67f77ffb2aea9c2b8de90e0f1904e53c21590fd475a9895d002e40ba1
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.11.0"
5
+ spec.version = "0.13.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.31"
26
+ spec.add_dependency "rubocop", "~> 1.35"
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
@@ -76,6 +76,8 @@ Layout/MultilineHashKeyLineBreaks:
76
76
  Enabled: true
77
77
  Layout/MultilineMethodArgumentLineBreaks:
78
78
  Enabled: true
79
+ Layout/MultilineMethodParameterLineBreaks:
80
+ Enabled: true
79
81
  Layout/RedundantLineBreak:
80
82
  Enabled: true
81
83
  InspectBlocks: true
@@ -83,6 +85,8 @@ Layout/SingleLineBlockChain:
83
85
  Enabled: true
84
86
  Layout/SpaceBeforeBrackets:
85
87
  Enabled: true
88
+ Layout/SpaceInLambdaLiteral:
89
+ EnforcedStyle: require_space
86
90
  Layout/SpaceInsideHashLiteralBraces:
87
91
  EnforcedStyle: no_space
88
92
  Layout/TrailingWhitespace:
@@ -133,6 +137,8 @@ Lint/RedundantDirGlobSort:
133
137
  Enabled: true
134
138
  Lint/RefinementImportMethods:
135
139
  Enabled: true
140
+ Lint/RequireRangeParentheses:
141
+ Enabled: true
136
142
  Lint/RequireRelativeSelfPath:
137
143
  Enabled: true
138
144
  Lint/SymbolConversion:
@@ -148,7 +154,7 @@ Lint/UnmodifiedReduceAccumulator:
148
154
  Lint/UselessRuby2Keywords:
149
155
  Enabled: true
150
156
  Metrics/BlockLength:
151
- IgnoredMethods:
157
+ AllowedMethods:
152
158
  - ips
153
159
  - refine
154
160
  Metrics/ParameterLists:
@@ -203,6 +209,8 @@ Style/DocumentDynamicEvalDefinition:
203
209
  Enabled: false
204
210
  Style/DoubleNegation:
205
211
  EnforcedStyle: forbidden
212
+ Style/EmptyHeredoc:
213
+ Enabled: true
206
214
  Style/EmptyLiteral:
207
215
  Enabled: false
208
216
  Style/EmptyMethod:
@@ -238,6 +246,8 @@ Style/InPatternThen:
238
246
  Enabled: true
239
247
  Style/IpAddresses:
240
248
  Enabled: true
249
+ Style/MagicCommentFormat:
250
+ Enabled: true
241
251
  Style/MapCompactWithConditionalBlock:
242
252
  Enabled: true
243
253
  Style/MapToHash:
@@ -303,6 +313,8 @@ Style/Send:
303
313
  Enabled: true
304
314
  Style/SignalException:
305
315
  EnforcedStyle: semantic
316
+ Style/StabbyLambdaParentheses:
317
+ EnforcedStyle: require_no_parentheses
306
318
  Style/StaticClass:
307
319
  Enabled: true
308
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.11.0
4
+ version: 0.13.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-07-02 00:00:00.000000000 Z
31
+ date: 2022-08-12 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.31'
39
+ version: '1.35'
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.31'
46
+ version: '1.35'
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.17
148
+ rubygems_version: 3.3.19
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
@@ -1 +1 @@
1
- ���y1���p���}n��74gMr��v��s��\��U�*SQ8���W�r�
1
+ >u�ol�`��ҹ�)�}S �0�R��&2 �/8gnv=lZ�{��1�X��uMD�EO��ï��^�B���5n��?��)Ma|<�X�5U`Eˤd��_#�R��R$D��)d���0�H0�%|<����0.nZXU�d����ٞ�ju�\n�������z��/ӌ�+t20)������@&`� �����4�gU.-�jC&�mk�R���<Z��u���_: ���ѾF�g�v�d���m���