boltless 2.10.1 → 2.11.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/Makefile +5 -3
- data/lib/boltless/version.rb +1 -1
- data/spec/support/suite_context.rb +1 -3
- 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: 9652daf210d80d8f23a9f406b5a44b2c05bf18618204304556478050850552ff
|
|
4
|
+
data.tar.gz: 8cd6262a54f70766744750433ff5e39a6c865bdaa048688456df735d2e50eaec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1eaa3690fcde45b460bfde70efc42885659531d2267e988205cf3cd431a0bd340a90344651523758e4eef6b347482130fd16d7658eb6f5da3ff0ee4eaa28d22
|
|
7
|
+
data.tar.gz: 02f5f8a53dd920702ce6e643796c6c1185a9e3abf20646caca523d8afc899bc7e46dec3479ef32d52492f7c3e0099267fc2d9a666f872cc6cfd15f0315ac0e3f
|
data/Makefile
CHANGED
|
@@ -140,9 +140,11 @@ endif
|
|
|
140
140
|
clean-images:
|
|
141
141
|
# Clean build images
|
|
142
142
|
ifeq ($(MAKE_ENV),docker)
|
|
143
|
-
|
|
144
|
-
| $(
|
|
145
|
-
| $(
|
|
143
|
+
@$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
|
|
144
|
+
| $(GREP) $(shell basename "`pwd`") \
|
|
145
|
+
| $(AWK) '{ print $$0 }' \
|
|
146
|
+
| $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
|
|
147
|
+
| $(GREP) -vP 'cannot be forced|invalid reference' || true
|
|
146
148
|
endif
|
|
147
149
|
|
|
148
150
|
distclean: clean clean-containers clean-images
|
data/lib/boltless/version.rb
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Print some information
|
|
4
4
|
#
|
|
5
|
-
# rubocop:disable
|
|
6
|
-
# rubocop:disable RSpec/Output -- ditto
|
|
5
|
+
# rubocop:disable RSpec/Output -- because we want to write to stdout here
|
|
7
6
|
puts
|
|
8
7
|
puts <<DESC
|
|
9
8
|
-------------- Versions --------------
|
|
@@ -13,5 +12,4 @@ puts <<DESC
|
|
|
13
12
|
--------------------------------------
|
|
14
13
|
DESC
|
|
15
14
|
puts
|
|
16
|
-
# rubocop:enable Rails/Output
|
|
17
15
|
# rubocop:enable RSpec/Output
|