react-manifest-rails 0.2.5 → 0.2.6
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 +6 -0
- data/lib/react_manifest/railtie.rb +2 -1
- data/lib/react_manifest/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9e734e50556ce1fafb042b8c906a2d8207080a79e5c82f6fa3088e6d3b0b1b9
|
|
4
|
+
data.tar.gz: 2e7f5e2ab8142287c150c31befcb47318c71f62f3620a3099930dcc323e33410
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7190fdd1cb329ec7c6a4012a681bdbfba92d2f2f787f876048c0052d120c600e4ca532fa504c82c54c1e3a24490cfc69c9e4c42482c1bbfa890dfff88739fad
|
|
7
|
+
data.tar.gz: 54b9869d89a3d658838895cb172429c996da94e3365271e6194f1c2be53ae5427f3d28399a93251f106ead4b15872dbe828cb65a66f75a33e384fab38a902fb7
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.6] - 2026-04-15
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Resolved Railtie boot error caused by calling private class method `missing_manifest_bundles` with an explicit receiver.
|
|
12
|
+
- Development server boot no longer raises `private method missing_manifest_bundles called for ReactManifest::Railtie:Class`.
|
|
13
|
+
|
|
8
14
|
## [0.2.5] - 2026-04-15
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -10,7 +10,8 @@ module ReactManifest
|
|
|
10
10
|
next unless Rails.env.development?
|
|
11
11
|
|
|
12
12
|
config = ReactManifest.configuration
|
|
13
|
-
|
|
13
|
+
# Private class method: call via send from the initializer instance context.
|
|
14
|
+
missing = self.class.send(:missing_manifest_bundles, config)
|
|
14
15
|
next if missing.empty?
|
|
15
16
|
|
|
16
17
|
message = "[ReactManifest] Missing manifests on boot: #{missing.join(', ')}. Generating now..."
|