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 +4 -4
- data/Makefile +5 -3
- data/lib/boltless/version.rb +1 -1
- data/spec/boltless/request_spec.rb +1 -1
- data/spec/support/suite_context.rb +1 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d9145105f164db9bdc1c98de22a4a035cc16937a81e2b45c50b828b6a81b7e7
|
|
4
|
+
data.tar.gz: 2df4fb83c2c659de1e34ce5cbb1dbf1538057162c91d0772f4e4ef16cf844ac6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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
|
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.
|
|
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.
|
|
233
|
+
rubygems_version: 4.0.16
|
|
234
234
|
specification_version: 4
|
|
235
235
|
summary: neo4j driver, via the HTTP API
|
|
236
236
|
test_files: []
|