factory_bot_instrumentation 3.0.0 → 3.2.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: a3ffdbe89a6d52f2e42501cda7e16486837898cc3e98b11eecc4259f4c62ca13
4
+ data.tar.gz: ea11aa96c68c2d8b0b5d82b93a1b4b2f1d558c2cf5a3180ff39f4bd2733d840e
5
5
  SHA512:
6
- metadata.gz: 0bbbb1aaad25753d40cd97dfdd968c9935cfc9d6aded00ceb39aded62067707ebde83364a6b688700bf2cef4c3b43778a3c67c6f54940224a2d6be237aec48bb
7
- data.tar.gz: 412673861a682f7506c9b56e2be255f56ac66eb604596348de122e29e6aacd6cc54dcbbc6f51ec3eee1dd4c35b30dc2494f96e6b995678245c0d8ac54b275ec1
6
+ metadata.gz: 1f3bac980f8316e752de81f09afc1434a26eff5778d4906910de50efcc3f2a0a5ae2b6ebaa8e4e62b590380c6de08c8961df56fe1a8915c126da495c853407e8
7
+ data.tar.gz: d4d79cfd4b72f5ca9d9d54afe4f684837ce68bf1b99f789d07d52fd52f03319a6549bac8ddfdf98234776fbdfff933ea3630912e792104a625819031c70a9829
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 3.2.0 (19 June 2026)
6
+
7
+ * Improved the title and navigation title on the Instrumentation UI ([#48](https://github.com/hausgold/factory_bot_instrumentation/pull/48))
8
+
9
+ ### 3.1.0 (20 May 2026)
10
+
11
+ * Corrected some RuboCop glitches ([#47](https://github.com/hausgold/factory_bot_instrumentation/pull/47))
12
+
5
13
  ### 3.0.0 (13 May 2026)
6
14
 
7
15
  * 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
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
- <title><%= @config.application_name %> Instrumentation</title>
6
+ <title><%= @config.application_name %> · Instrumentation</title>
7
7
  <%= render partial: 'styles' %>
8
8
  <%= stylesheet_link_tag 'factory_bot_instrumentation/application',
9
9
  media: 'all' %>
@@ -12,7 +12,7 @@
12
12
  <body>
13
13
  <nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
14
14
  <a class="navbar-brand" href="#">
15
- <%= @config.application_name %> Instrumentation
15
+ <%= @config.application_name %> · Instrumentation
16
16
  </a>
17
17
  <ul class="navbar-nav mr-auto">
18
18
  <%= render 'factory_bot_instrumentation/navigation' %>
@@ -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.2.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.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer