homura-runtime 0.3.30 → 0.3.32
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 +11 -0
- data/lib/homura/runtime/version.rb +1 -1
- data/lib/literal/opal_compat.rb +7 -0
- 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: 77b30f48a7593c86bccd5146477670e76990c56068aa30f9328d0d6f37bd2247
|
|
4
|
+
data.tar.gz: 8a55733ce8e296da51ec29d6d4ab132e437b958c96dbc3a48832f7651aa67df3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e863281ccea5089d53fdd96d24721401388a84b67100fd11902f6cca6b641823623dab0f53e1739bbc0a46c179140d5eb4b2e4c899fc30f35d979cf45427ee27
|
|
7
|
+
data.tar.gz: adbd995205e4a8ba0ad8c6210eb035e13865857ce94e37a327367e860afc1e79e7433172b732683dc7f01fa718cc929a209a787f6dadc1cb42872f085f6bf588
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.32 (2026-06-25)
|
|
4
|
+
|
|
5
|
+
- Only include `Literal::Properties::DocString` when it is already loaded,
|
|
6
|
+
avoiding a nonessential Literal documentation autoload under Opal.
|
|
7
|
+
|
|
8
|
+
## 0.3.31 (2026-06-25)
|
|
9
|
+
|
|
10
|
+
- Extend component classes with `Literal::Types` when they extend
|
|
11
|
+
`Literal::Properties`, preserving helpers such as `_String` and `_Integer`
|
|
12
|
+
under Opal.
|
|
13
|
+
|
|
3
14
|
## 0.3.30 (2026-06-25)
|
|
4
15
|
|
|
5
16
|
- Provide Opal-safe non-frozen Literal singleton type instances for
|
data/lib/literal/opal_compat.rb
CHANGED
|
@@ -172,6 +172,13 @@ module Literal
|
|
|
172
172
|
end
|
|
173
173
|
|
|
174
174
|
module Literal::Properties
|
|
175
|
+
def self.extended(base)
|
|
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
|
|
181
|
+
|
|
175
182
|
private def __define_literal_methods__(new_property)
|
|
176
183
|
extension = __literal_extension__
|
|
177
184
|
|