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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4527289f347ae33d727453bb7fe5d979ef0a6d7ac99e8b01190adfa9e241dba
4
- data.tar.gz: 1d77815875043949faec6accccfed5e8ffe7fa341621800edeb9b31ecc93dab2
3
+ metadata.gz: 9652daf210d80d8f23a9f406b5a44b2c05bf18618204304556478050850552ff
4
+ data.tar.gz: 8cd6262a54f70766744750433ff5e39a6c865bdaa048688456df735d2e50eaec
5
5
  SHA512:
6
- metadata.gz: 7a20877b49d67fc8bcc208f48a2d373dd299649fff9401c79468e4e329337588c13fbe3e7446d4446179661958ae47fabb978bdcdd2b2cb213da1fc1739fc351
7
- data.tar.gz: 70181c1f2698b187f9e4a7b572e4a751ba5f0667a0525f35ea555d766c1a49054bce3a9a3d57087a36968b6b31c4f77b0ab60f477ada860079385fbc42168f02
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
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
144
- | $(AWK) '{ print $$3 }' \
145
- | $(XARGS) -rn1 $(DOCKER) rmi -f
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
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Boltless
5
5
  # The version of the +boltless+ gem
6
- VERSION = '2.10.1'
6
+ VERSION = '2.11.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
@@ -2,8 +2,7 @@
2
2
 
3
3
  # Print some information
4
4
  #
5
- # rubocop:disable Rails/Output -- because we want to write to stdout here
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boltless
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.1
4
+ version: 2.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer