homura-runtime 0.3.21 → 0.3.22

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: c727de4d506e1d4f3f850fcf02a24471670bb003451910db9d5043c88f481df6
4
- data.tar.gz: 89e23c95e901eb6232687e9da34d0a4aa402c03418617a1828b933a6eb840499
3
+ metadata.gz: c5f55310be45f2c74447186bb11ed970247925dd5c826b417f815d580f6d8da0
4
+ data.tar.gz: 568c1cad017678edc3f81c8adc49b92f183ff29f7e8db0ec585e53e4d34adcf0
5
5
  SHA512:
6
- metadata.gz: '096b5e42136d862cbd3d66a8c16a194e26df0d54e508b06072753563558f63bd2e1c85a3c16bca23407ae4d3479776199e8d122b1af6d86adce85abe32b26fe1'
7
- data.tar.gz: dff29ea05788f0e8b7bcf3d4a9ba92594d43dc5deb2dc5318a2699045d268e08c94b0e16e409237b179092a9545956539f97ac52b83a5acf9d4ca2c6cd4e6799
6
+ metadata.gz: 6c897c968ea643fa895aa977d6c0a72ed480796cc74d93853716e1828f8174deda6bc9bdc4e3618b3aa39df5805ab6e0225c4b7f8dac4b7a4a72256a9ab388a2
7
+ data.tar.gz: 0124e0b823f5b38c508934f42127d034fa0d1c2ebdb487ecb7f2095112b953992ac7f49925386fdaf084324257982d915b95d26892d9626b2eb7548936787028
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.22 (2026-06-25)
4
+
5
+ - Define the Phlex namespace before preloading Phlex FIFO. The FIFO file uses
6
+ `class Phlex::FIFO`, so the namespace must exist before the root file runs.
7
+
3
8
  ## 0.3.21 (2026-06-25)
4
9
 
5
10
  - Preload Phlex's FIFO dependency before Phlex root setup and explicitly load
@@ -266,6 +266,7 @@ module HomuraRuntime
266
266
  root_file = lib.join("#{spec.name}.rb")
267
267
  next unless root_file.file?
268
268
 
269
+ lines << "module Phlex; end unless defined?(Phlex)" if spec.name == "phlex"
269
270
  OPAL_ENTRY_PRELOAD_REQUIRES.fetch(spec.name, []).each do |require_path|
270
271
  lines << "require #{require_path.inspect}"
271
272
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HomuraRuntime
4
- VERSION = "0.3.21"
4
+ VERSION = "0.3.22"
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.21
4
+ version: 0.3.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuhiro Homma