homura-runtime 0.3.32 → 0.3.34
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/version.rb +1 -1
- data/lib/literal/opal_compat.rb +4 -6
- 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: 57a3955ce22404be1433095815081bd7fc2bf181f8d61bdd4b6422011600ce6d
|
|
4
|
+
data.tar.gz: 3f69597f7125ebb37defd20cc67a4d4731b366433523dfafad3591bfff4a3742
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68713a2f45575c366b5d8abcd78bda5da512741b6592791a34c7b1a69fb7fa2bd4004e3a8b23b554f8b9a13165dfae336e301da8b46895571bcea931f110d674
|
|
7
|
+
data.tar.gz: 2f2830795b595b794ccdc4bd92707d380671a1b9d91fec69d906bb0d7ced688809445744788daa17729fdbdb0b67d96f65eac66dca85b8ac899995f0ffafd51e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.34 (2026-06-25)
|
|
4
|
+
|
|
5
|
+
- Explicitly load Literal property support before reopening
|
|
6
|
+
`Literal::Properties`, so Opal builds keep the upstream `prop`,
|
|
7
|
+
`literal_properties`, and `__literal_extension__` methods.
|
|
8
|
+
|
|
9
|
+
## 0.3.33 (2026-06-25)
|
|
10
|
+
|
|
11
|
+
- Re-include `Literal::Types` into `Literal::Properties` after the Opal
|
|
12
|
+
compatibility layer has loaded type helpers, without overriding Literal's
|
|
13
|
+
own `extended` hook.
|
|
14
|
+
|
|
3
15
|
## 0.3.32 (2026-06-25)
|
|
4
16
|
|
|
5
17
|
- Only include `Literal::Properties::DocString` when it is already loaded,
|
data/lib/literal/opal_compat.rb
CHANGED
|
@@ -131,6 +131,9 @@ class Literal::Types::JSONDataType
|
|
|
131
131
|
end
|
|
132
132
|
|
|
133
133
|
require "literal/types"
|
|
134
|
+
require "literal/property"
|
|
135
|
+
require "literal/properties/schema"
|
|
136
|
+
require "literal/properties"
|
|
134
137
|
|
|
135
138
|
module Literal
|
|
136
139
|
class OpalBuffer
|
|
@@ -172,12 +175,7 @@ module Literal
|
|
|
172
175
|
end
|
|
173
176
|
|
|
174
177
|
module Literal::Properties
|
|
175
|
-
|
|
176
|
-
super
|
|
177
|
-
base.extend(Literal::Types)
|
|
178
|
-
base.include(DocString) if const_defined?(:DocString, false)
|
|
179
|
-
base.include(base.__send__(:__literal_extension__))
|
|
180
|
-
end
|
|
178
|
+
include Literal::Types
|
|
181
179
|
|
|
182
180
|
private def __define_literal_methods__(new_property)
|
|
183
181
|
extension = __literal_extension__
|