boltless 2.10.1 → 2.11.1

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: 7d9145105f164db9bdc1c98de22a4a035cc16937a81e2b45c50b828b6a81b7e7
4
+ data.tar.gz: 2df4fb83c2c659de1e34ce5cbb1dbf1538057162c91d0772f4e4ef16cf844ac6
5
5
  SHA512:
6
- metadata.gz: 7a20877b49d67fc8bcc208f48a2d373dd299649fff9401c79468e4e329337588c13fbe3e7446d4446179661958ae47fabb978bdcdd2b2cb213da1fc1739fc351
7
- data.tar.gz: 70181c1f2698b187f9e4a7b572e4a751ba5f0667a0525f35ea555d766c1a49054bce3a9a3d57087a36968b6b31c4f77b0ab60f477ada860079385fbc42168f02
6
+ metadata.gz: f27a11a60a8618f6b105c6f9d7fbbb3706d6a7204cb049acd20f9c59ee8abe8c7739582b481c82cefc2dcf510ee49dc2e4fd09308fe94de35a9294401c68efc7
7
+ data.tar.gz: 1c4bc71b482d56244a46fe0e3ffa9fc06d7fdfaf0dbf2677e055e232bf9e020d0a47bd63428de5b812d2b21d29d23e2169a4542c0c3c33af7b7f3f46298790df
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.1'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
@@ -272,7 +272,7 @@ RSpec.describe Boltless::Request do
272
272
 
273
273
  it 'logs the start of the transaction (debug)' do
274
274
  action.call
275
- expect(log).to match(/\[tx:write:tbd rq:1\] BEGIN/)
275
+ expect(log).to include('[tx:write:tbd rq:1] BEGIN')
276
276
  end
277
277
  end
278
278
  end
@@ -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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -230,7 +230,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
230
230
  - !ruby/object:Gem::Version
231
231
  version: '0'
232
232
  requirements: []
233
- rubygems_version: 4.0.11
233
+ rubygems_version: 4.0.16
234
234
  specification_version: 4
235
235
  summary: neo4j driver, via the HTTP API
236
236
  test_files: []