homura-runtime 0.3.13 → 0.3.14

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: b92445bbcde7ae12d5eb0ee75142a05bc1ec83fcac2748a36a210580accece9f
4
- data.tar.gz: b51a9d070d3018c5ac105896dec72e1ac0b506fe473b97ba52bc694734ca25b3
3
+ metadata.gz: 416aad7ed5ff6c78c488c1b63347aeebf6808d481a7f065378ea17509169876e
4
+ data.tar.gz: 915803ca34b708a20edbe4e73bd14d4b449a6ba5c13fddffbfef1300109470e3
5
5
  SHA512:
6
- metadata.gz: 8ed463c81c2358cc997a2e97867727e0166ea8e6c4896d22e05ac2adb08aeee0454f80143d11ab0866aae19c36353062aa7c74f88704976e8e453eaaaca40f5a
7
- data.tar.gz: 3aac55e26991a4e2d8849160554c17042e2b471d1d702e7bd9fecbddbc384b97007f68add9c07a54f47dbd8d1d8022ee943cd2609ac6eead212afa1a2dbd12db
6
+ metadata.gz: 9ce8ece70fd106ec42e270b66168e75185dd9bcd6016f5a16c10fe4cbc61f237296c306b9742932e9037400434c8bfc4538e51d7eeca676af1c5595d21af2605
7
+ data.tar.gz: b1b2cf4677f704df9df3dd8fcd75d37cdb63fe74a25d4e81b355a325f46e5b85595fb2553415397a99af27a5dc026a1d99f6bc4e24b23942a22d034fc511e9af
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.14 (2026-06-25)
4
+
5
+ - Load Phlex/Literal root files as logical requires with explicit `.rb`
6
+ extensions in the generated Opal gem prelude. This avoids both directory
7
+ collisions and accidental eager loading of Phlex compiler internals.
8
+
3
9
  ## 0.3.13 (2026-06-25)
4
10
 
5
11
  - Load Phlex/Literal root code through Opal `require_tree` in the generated
@@ -263,7 +263,7 @@ module HomuraRuntime
263
263
  next unless root_file.file?
264
264
 
265
265
  lines << "Zeitwerk.__homura_next_gem_root = #{root_file.to_s.inspect}"
266
- lines << "require_tree #{lib.to_s.inspect}"
266
+ lines << "require #{("#{spec.name}.rb").inspect}"
267
267
  lines << "`Opal.loaded([#{spec.name.inspect}])`"
268
268
  lines << "require #{compat.inspect}"
269
269
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HomuraRuntime
4
- VERSION = "0.3.13"
4
+ VERSION = "0.3.14"
5
5
  end
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.13
4
+ version: 0.3.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuhiro Homma