factory_bot_instrumentation 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 64c8bfd7239e2b0011f69809680abfd6066fa6f41fc274527fa552555f20608a
|
4
|
+
data.tar.gz: a833f35d400e028b82623f72e4248101f977afb811c4a8f0ec0224f5a916f38b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65a6f1c073c7c81e573584fade3c389a9195e5c0e8a74439d958859596cbb7d3d89754061f5ea6b9d3fc9d3857ca89d867b45fb94db90415804a7a69cb1d2aaf
|
7
|
+
data.tar.gz: 9b14f2f5d3a05f9a9523cae760e88338c3ec2823b5090b462705c86b3a0cbef71fe00ed14f9cf8a086477d392e6a27259309dd1b1813c9517deed8f11d8912d7
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
4
4
|
|
5
|
+
### 1.5.1 (9 January 2025)
|
6
|
+
|
7
|
+
* Sometimes the classic Rails autoloader is confused our engines
|
8
|
+
`RootController` does not inherit our engines `ApplicationController`, but
|
9
|
+
the one from host application, so we specify our dependency explicitly (#26)
|
10
|
+
|
5
11
|
### 1.5.0 (7 January 2025)
|
6
12
|
|
7
13
|
* Switched from `ActionController::API` to `ActionController::Base` for the
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module FactoryBot
|
4
4
|
module Instrumentation
|
5
5
|
# The Instrumentation engine controller with frontend and API actions.
|
6
|
-
class RootController < ApplicationController
|
6
|
+
class RootController < FactoryBot::Instrumentation::ApplicationController
|
7
7
|
# Show the instrumentation frontend which features the output of
|
8
8
|
# configured dynamic seeds scenarios. The frontend allows humans to
|
9
9
|
# generate new seed data on the fly.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: factory_bot_instrumentation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hermann Mayer
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: factory_bot
|