homura-runtime 0.3.31 → 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 +5 -0
- data/lib/homura/runtime/version.rb +1 -1
- data/lib/literal/opal_compat.rb +1 -1
- 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,10 @@
|
|
|
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
|
+
|
|
3
8
|
## 0.3.31 (2026-06-25)
|
|
4
9
|
|
|
5
10
|
- Extend component classes with `Literal::Types` when they extend
|
data/lib/literal/opal_compat.rb
CHANGED
|
@@ -175,7 +175,7 @@ module Literal::Properties
|
|
|
175
175
|
def self.extended(base)
|
|
176
176
|
super
|
|
177
177
|
base.extend(Literal::Types)
|
|
178
|
-
base.include(DocString)
|
|
178
|
+
base.include(DocString) if const_defined?(:DocString, false)
|
|
179
179
|
base.include(base.__send__(:__literal_extension__))
|
|
180
180
|
end
|
|
181
181
|
|