homura-runtime 0.3.16 → 0.3.17

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: 4492581dac37144c7ec31f1fb5e51392ab5211abff182cc3db03b2819ea60594
4
- data.tar.gz: 80ef1af210e92368eb44dbd37312408e4565011b7f87d8f38e0388be820ece22
3
+ metadata.gz: 8f26380642ac1b8cd24ca3ec08727defe9f9030ccf7b6a6cf72186b4a4aa1a56
4
+ data.tar.gz: 52d666f35e258daa99364ce209ad8cb7d314d3773f6ae0828ce973802d4f2580
5
5
  SHA512:
6
- metadata.gz: 2fa3fda086a3d49a43d6e640613e3f2f353c653a9a9aed8c1bb12dfb470ec1fcfd6f4758b0aaebb3de7b5516a485ba78bbf7022d1596463c61f909216f5275ca
7
- data.tar.gz: 9b88264d29269510f19a7b1039a717018505d3142a4ff3cf7cf8376bb898e9c15418c6cfd42c98274b42901fdf51797e5a37c8d32e92eb5bed30d484c9845d77
6
+ metadata.gz: d5f0ac5a607b868ee964750a94a0b2c858e5ebc47c50aa9c8cb5ce2c55d3a2c158ef0fcc3fd7f788fa5866686720618b6cfff1cde4c0d5e6ec88c1e86be8dbbb
7
+ data.tar.gz: 31e676bbe2a40a1c8c654be6f48d2f24db4ff43022d81977e321b20ef7449eb0679899efb80ea7a9d5f42493b2e3d911d832917196d6bf5fac9b70c3caf17ca1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.17 (2026-06-25)
4
+
5
+ - Add Ruby LSP addon no-op stubs for published Phlex builds. The Workers
6
+ runtime does not use Ruby LSP, but Phlex's library tree can reference those
7
+ files during standalone Opal builds from Rubygems.
8
+
3
9
  ## 0.3.16 (2026-06-25)
4
10
 
5
11
  - Shadow Phlex compiler files with runtime no-op stubs for Opal builds. Workers
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HomuraRuntime
4
- VERSION = "0.3.16"
4
+ VERSION = "0.3.17"
5
5
  end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RubyLsp
4
+ class Addon
5
+ end
6
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "ruby_lsp/addon"
4
+
5
+ module RubyLsp
6
+ module Phlex
7
+ class Addon < ::RubyLsp::Addon
8
+ def activate(_global_state, _message_queue)
9
+ end
10
+
11
+ def deactivate
12
+ end
13
+
14
+ def name
15
+ "Phlex"
16
+ end
17
+
18
+ def version
19
+ "0.1.0"
20
+ end
21
+ end
22
+ end
23
+ 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.16
4
+ version: 0.3.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuhiro Homma
@@ -77,6 +77,8 @@ files:
77
77
  - lib/phlex/compiler.rb
78
78
  - lib/phlex/compiler/method_compiler.rb
79
79
  - lib/phlex/opal_compat.rb
80
+ - lib/ruby_lsp/addon.rb
81
+ - lib/ruby_lsp/phlex/addon.rb
80
82
  - lib/zeitwerk/opal_compat.rb
81
83
  - runtime/patch-opal-evals.mjs
82
84
  - runtime/setup-node-crypto.mjs