factory_bot_instrumentation 3.0.0 → 3.1.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: 3a38fbf7fbe98fed861a4fc524a10e5798e8e1abc918c742272365b11c476e81
4
- data.tar.gz: a9b886fd2f52d856c264b34d8b2d4297df8ea12d1bb6bf1f84b1bbb6480b54ce
3
+ metadata.gz: ab20c491a62f1dd81d58bc29cdda2f74b992d50e174a52a87307450acf0d92ee
4
+ data.tar.gz: 23f68731431101c56aeaeb5f19ce1bf3ccf688e90dcb5d9c8b0e65c40fef841f
5
5
  SHA512:
6
- metadata.gz: 0bbbb1aaad25753d40cd97dfdd968c9935cfc9d6aded00ceb39aded62067707ebde83364a6b688700bf2cef4c3b43778a3c67c6f54940224a2d6be237aec48bb
7
- data.tar.gz: 412673861a682f7506c9b56e2be255f56ac66eb604596348de122e29e6aacd6cc54dcbbc6f51ec3eee1dd4c35b30dc2494f96e6b995678245c0d8ac54b275ec1
6
+ metadata.gz: 4fc92d858c91dadfc4b1f3680b270065f2cc3d8c945f64dae724b8ea9c5b2a0c0d1702f2b440a42ac94c8b724738a844288b9e42a41fae99987e66a172bc54b8
7
+ data.tar.gz: a6b2f10a2101fcca381f46544b081948c3ba5269f1ab9e594c4b4a17434c215f2ea95c5eba2fe8c3eedfe264f62193927dfc96d6bbd1ea9ce2f24f126d1f05a1
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 3.1.0 (20 May 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#47](https://github.com/hausgold/factory_bot_instrumentation/pull/47))
8
+
5
9
  ### 3.0.0 (13 May 2026)
6
10
 
7
11
  * Added automatic asset registering with Sprockets ([#46](https://github.com/hausgold/factory_bot_instrumentation/pull/46))
data/Makefile CHANGED
@@ -141,9 +141,11 @@ endif
141
141
  clean-images:
142
142
  # Clean build images
143
143
  ifeq ($(MAKE_ENV),docker)
144
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
145
- | $(AWK) '{ print $$3 }' \
146
- | $(XARGS) -rn1 $(DOCKER) rmi -f
144
+ @$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
145
+ | $(GREP) $(shell basename "`pwd`") \
146
+ | $(AWK) '{ print $$0 }' \
147
+ | $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
148
+ | $(GREP) -vP 'cannot be forced|invalid reference' || true
147
149
  endif
148
150
 
149
151
  distclean: clean clean-containers clean-images
@@ -4,7 +4,7 @@ module FactoryBot
4
4
  # The gem version details.
5
5
  module Instrumentation
6
6
  # The version of the +factory_bot_instrumentation+ gem
7
- VERSION = '3.0.0'
7
+ VERSION = '3.1.0'
8
8
 
9
9
  class << self
10
10
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_bot_instrumentation
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer