countless 2.11.1 → 2.12.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: '058786ae6c619b821fa7b7391abfdde41ad64e4dd5e258a7e19a0c9848b4b8fd'
4
- data.tar.gz: bd91b9f513bc93b1b749ec88673e0b9d6d89212b1255e2f1bfca6b252eb51a74
3
+ metadata.gz: 99e75538605423fa0f26a939bb7b972844375480e7b2a48c26d85cb8f36ca7c2
4
+ data.tar.gz: 9300f3041c613972bab82b6b5260663898e551a6702bdce037d165754d7aa118
5
5
  SHA512:
6
- metadata.gz: 65aa844dfaff4dfe4eaf5a7a11080d82a6a662b1a3d6c4806fb56a5c37cd7f4f8cf5834fb5be2243bae7039805c66dabe8f63f2210310bca31d9a8b80be8b533
7
- data.tar.gz: a1ebd8ebc7dc477f16bd8cc6b2c23f176af12a1b70d009fa4814df37704fca541f7e07aa54d2861fe8c09fbf17c5a583a30b7f50bb4f04d798a50dd8319d94b7
6
+ metadata.gz: b9e4ebd7acf29d4c8291479b77569f2a290aecb7f63e65ba5f64b32477e7472873599807ec959f229a1e132c056c0085e9d7f0c13dc26d3b241443c4dbe4b3eb
7
+ data.tar.gz: be2ed6f1ff3ec10534945e8336569706629df96caeea674ca518910f23781ef0abd283112ea3909ad37b2c4a683d29ebf10862023f613c1c5208ade4bce89ddb
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.12.0 (20 May 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#27](https://github.com/hausgold/countless/pull/27))
8
+
5
9
  ### 2.11.1 (5 May 2026)
6
10
 
7
11
  * Corrected the readme
data/Makefile CHANGED
@@ -154,9 +154,11 @@ endif
154
154
  clean-images:
155
155
  # Clean build images
156
156
  ifeq ($(MAKE_ENV),docker)
157
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
158
- | $(AWK) '{ print $$3 }' \
159
- | $(XARGS) -rn1 $(DOCKER) rmi -f
157
+ @$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
158
+ | $(GREP) $(shell basename "`pwd`") \
159
+ | $(AWK) '{ print $$0 }' \
160
+ | $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
161
+ | $(GREP) -vP 'cannot be forced|invalid reference' || true
160
162
  endif
161
163
 
162
164
  distclean: clean clean-containers clean-images
@@ -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.11.1'
6
+ VERSION = '2.12.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.11.1
4
+ version: 2.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer