where_is_waldo 0.1.1 → 0.1.2
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/CHANGELOG.md +19 -0
- data/VERSION +1 -1
- data/lib/where_is_waldo/engine.rb +0 -5
- 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: f1f429edefae4d492dd5693b50112c2573ad1869e9771fe6bb8ff740cfcb195f
|
|
4
|
+
data.tar.gz: 38ce0d06a28fe595ec70f08289737f20420ace8854bfd1ee26e3bd94025509d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae4e3d676d6334390fe4d43cf19f86edd15bfbec3514446c947d10c5e364d6094a2b79ee54f5f7bf550ccd95895331a9248ab227c2bfcfe5b967f9098da6bf91
|
|
7
|
+
data.tar.gz: bd93a48197762af1999330abb33bca574216ea1982fbdc29c0f4100da885a3c5213604ed3dd01b80d477b911f835a39829bccd8cc63a86f6c761f567c4c36c56
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
Notable changes to where_is_waldo. Format loosely follows
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/).
|
|
5
5
|
|
|
6
|
+
## 0.1.2
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- Drop the manual `config.autoload_paths <<` lines for `app/services`,
|
|
11
|
+
`app/channels`, `app/jobs`, and `app/models` from the engine. `Rails::Engine`
|
|
12
|
+
already globs every `app/*` directory into the engine's autoload **and**
|
|
13
|
+
eager-load paths, so the entries were redundant — and because
|
|
14
|
+
`config.autoload_paths` is autoload-only, they marked those directories as
|
|
15
|
+
not-eager-loadable, which can trip Zeitwerk in eager-loading (production)
|
|
16
|
+
hosts. Zeitwerk still picks up all four directories.
|
|
17
|
+
|
|
18
|
+
### Security (development dependencies only)
|
|
19
|
+
|
|
20
|
+
- `axios` → `1.18.0`+ (via a `resolutions` pin; reached only through
|
|
21
|
+
`start-server-and-test` → `wait-on`) and `loofah` → `2.25.2`. Neither is
|
|
22
|
+
shipped in the published gem or npm package — the npm package declares no
|
|
23
|
+
runtime `dependencies` — so released `0.1.1` artifacts were not affected.
|
|
24
|
+
|
|
6
25
|
## 0.1.1
|
|
7
26
|
|
|
8
27
|
### Fixed
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
|
@@ -4,11 +4,6 @@ module WhereIsWaldo
|
|
|
4
4
|
class Engine < ::Rails::Engine
|
|
5
5
|
isolate_namespace WhereIsWaldo
|
|
6
6
|
|
|
7
|
-
config.autoload_paths << File.expand_path("../../app/services", __dir__)
|
|
8
|
-
config.autoload_paths << File.expand_path("../../app/channels", __dir__)
|
|
9
|
-
config.autoload_paths << File.expand_path("../../app/jobs", __dir__)
|
|
10
|
-
config.autoload_paths << File.expand_path("../../app/models", __dir__)
|
|
11
|
-
|
|
12
7
|
# Configure Presence model associations after all code is loaded
|
|
13
8
|
config.after_initialize do
|
|
14
9
|
WhereIsWaldo::Presence.configure_associations! if WhereIsWaldo::Presence.respond_to?(:configure_associations!)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: where_is_waldo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Gibson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|