countless 2.11.0 → 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: 6fda060b4d3da9d7d73429cc5f9f81d505a280957079a53a52a8c60e0d1db70e
4
- data.tar.gz: d35b674bec7942bd03ecd02cc495212ca3b7041872b26d346f0070052abfdd0a
3
+ metadata.gz: 99e75538605423fa0f26a939bb7b972844375480e7b2a48c26d85cb8f36ca7c2
4
+ data.tar.gz: 9300f3041c613972bab82b6b5260663898e551a6702bdce037d165754d7aa118
5
5
  SHA512:
6
- metadata.gz: d7b471490e0e4bec16e6fa5050b191602c6aec57f2caebb0fd544238b9a3f31dce11e830383061b501c9f3e44d2e65ca2d95597cceba12201643c3db2861315c
7
- data.tar.gz: 1fb2a642571b23f476195dfe8e2cbd3eed01d7966f95d91e86ff35c19a52fcd62dd100e675e7739fa5d84f9e88498b4d81a163abff80ee407d3f7c4e09c60011
6
+ metadata.gz: b9e4ebd7acf29d4c8291479b77569f2a290aecb7f63e65ba5f64b32477e7472873599807ec959f229a1e132c056c0085e9d7f0c13dc26d3b241443c4dbe4b3eb
7
+ data.tar.gz: be2ed6f1ff3ec10534945e8336569706629df96caeea674ca518910f23781ef0abd283112ea3909ad37b2c4a683d29ebf10862023f613c1c5208ade4bce89ddb
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
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
+
9
+ ### 2.11.1 (5 May 2026)
10
+
11
+ * Corrected the readme
12
+
5
13
  ### 2.11.0 (4 May 2026)
6
14
 
7
15
  * Dropped Ruby 3.x and Rails <8.1 support ([#26](https://github.com/hausgold/countless/pull/26))
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
data/README.md CHANGED
@@ -43,7 +43,7 @@ $ bundle
43
43
 
44
44
  ## Requirements
45
45
 
46
- * [Ruby](https://www.ruby-lang.org/) (>=3.2, tested on CRuby/MRI only, may work
46
+ * [Ruby](https://www.ruby-lang.org/) (>=4.0, tested on CRuby/MRI only, may work
47
47
  with other implementations as well)
48
48
  * [Perl](https://www.perl.org/) (>= 5.10, for the
49
49
  [cloc](https://github.com/AlDanial/cloc) utility)
@@ -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.0'
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.0
4
+ version: 2.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer