homura-runtime 0.3.10 → 0.3.12
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 +12 -0
- data/lib/homura/runtime/build_support.rb +1 -2
- data/lib/homura/runtime/version.rb +1 -1
- data/lib/monitor.rb +13 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef4b72afa95f5beb47c4856874e533d64431fa0b933b9476965b68ba238bd058
|
|
4
|
+
data.tar.gz: c779e82008e636af8602f41503d521d556cd9491d91ca2b2400298ab13c98264
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdf1702f8af45d0ad159448979cd9c823e21d045f88ccad41da3d95243a9898ae835792897febf5098d7012692311d21c4fc5f3f365b6736316ef4c0cb9faaa5
|
|
7
|
+
data.tar.gz: 0a2b7f0c0cdccac612c0c2dbeb4cf6be67a8b4bb08ebecf4d6c7ef9f654ad3eafc57205e57d9d2dd025fd36357ee9f9d57390953a63df0dd1c41455f031f5fad
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.12 (2026-06-25)
|
|
4
|
+
|
|
5
|
+
- Require Phlex/Literal root files with the explicit `.rb` path in the generated
|
|
6
|
+
Opal gem prelude. This avoids Opal choosing the sibling `lib/phlex/` or
|
|
7
|
+
`lib/literal/` directory before the root file.
|
|
8
|
+
|
|
9
|
+
## 0.3.11 (2026-06-25)
|
|
10
|
+
|
|
11
|
+
- Package the minimal Opal `monitor` shim required by Zeitwerk. This keeps
|
|
12
|
+
published Phlex/Literal examples buildable without depending on unpublished
|
|
13
|
+
`opal-homura` stdlib additions.
|
|
14
|
+
|
|
3
15
|
## 0.3.10 (2026-06-25)
|
|
4
16
|
|
|
5
17
|
- Package the Phlex, Literal, and Zeitwerk Opal compatibility files in
|
|
@@ -262,9 +262,8 @@ module HomuraRuntime
|
|
|
262
262
|
root_file = lib.join("#{spec.name}.rb")
|
|
263
263
|
next unless root_file.file?
|
|
264
264
|
|
|
265
|
-
root_require = root_file.to_s.delete_suffix(".rb")
|
|
266
265
|
lines << "Zeitwerk.__homura_next_gem_root = #{root_file.to_s.inspect}"
|
|
267
|
-
lines << "require #{
|
|
266
|
+
lines << "require #{root_file.to_s.inspect}"
|
|
268
267
|
lines << "`Opal.loaded([#{spec.name.inspect}])`"
|
|
269
268
|
lines << "require #{compat.inspect}"
|
|
270
269
|
end
|
data/lib/monitor.rb
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: homura-runtime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuhiro Homma
|
|
@@ -72,6 +72,7 @@ files:
|
|
|
72
72
|
- lib/homura_vendor_tilt.rb
|
|
73
73
|
- lib/homura_vendor_zlib.rb
|
|
74
74
|
- lib/literal/opal_compat.rb
|
|
75
|
+
- lib/monitor.rb
|
|
75
76
|
- lib/opal_patches.rb
|
|
76
77
|
- lib/phlex/opal_compat.rb
|
|
77
78
|
- lib/zeitwerk/opal_compat.rb
|