countless 2.9.0 → 2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82afb071fcf0694eac5b4c1349317ee4597e841f73427bd569d17842039895fd
4
- data.tar.gz: b9d8aa8cc2dda69d1704d9378416d31f0c1dcf4b6ad1876173e2967a2b71c16a
3
+ metadata.gz: e8b9e5a23fb6e484f580f8e771999153c36c94d8c29ac49d9645ebd52fd5fefe
4
+ data.tar.gz: 9c11c3787143245e7f5fe9577e69077da0bac9babc9dda3106df56979f6ff6ee
5
5
  SHA512:
6
- metadata.gz: 2aebca03ed60ef6df33fdbc7f60ec0972a07cc7be0547def213c097c90d3aa9c3cbd5e35a164cb9eae59336ead95de308e476b01d04df49897dbe818f5bc2e49
7
- data.tar.gz: d79e9326af63c074d2d6e71716a8983fd0e3062f50d6e66fde62ad38b11ee9db9d874bfbb941b85a7b9c97a366f0d7c9db7e771243e43e4fc816314699f23170
6
+ metadata.gz: 951eb28046219cc50113d4e0395c48a37ac992f567c0dd82d218b2d61428cbc35474c85b591985f5ba5c14546bac04db102c5fad8ca8be79ad1dbc7f5bdcab8e
7
+ data.tar.gz: 9fe0c5cbc828755845266d21310dcb8924a23e8c827875419dd1bbf3b85af3fef10ba6d1c638ae4143b210c1b1468e1df623e5325b684e5c24006e1bf024e7e3
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 2.10.0 (16 March 2026)
6
+
7
+ * Corrected some RuboCop issues ([#25](https://github.com/hausgold/countless/pull/25))
8
+
5
9
  ### 2.9.0 (18 February 2026)
6
10
 
7
11
  * Dropped 3rd-level gem dependencies which are not directly used
@@ -282,7 +282,7 @@ module Countless
282
282
  %i[
283
283
  name lines code_lines comment_lines
284
284
  classes methods m_over_c loc_over_m
285
- ].each_with_object({}) { |key, memo| memo[key] = send(key) }
285
+ ].to_h { |key| [key, send(key)] }
286
286
  end
287
287
  end
288
288
  end
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Countless
5
5
  # The version of the +countless+ gem
6
- VERSION = '2.9.0'
6
+ VERSION = '2.10.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: countless
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer