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 +4 -4
- data/CHANGELOG.md +8 -0
- data/Makefile +5 -3
- data/README.md +1 -1
- data/lib/countless/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99e75538605423fa0f26a939bb7b972844375480e7b2a48c26d85cb8f36ca7c2
|
|
4
|
+
data.tar.gz: 9300f3041c613972bab82b6b5260663898e551a6702bdce037d165754d7aa118
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
158
|
-
| $(
|
|
159
|
-
| $(
|
|
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/) (>=
|
|
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)
|
data/lib/countless/version.rb
CHANGED