lex-github 0.3.7 → 0.3.8
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/legion/extensions/github/runners/app.rb +3 -0
- data/lib/legion/extensions/github/version.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: aef9f3d37d791d410bb06fd95cb9ac2e4694fbe12addf5ce79b747c7ad245eb7
|
|
4
|
+
data.tar.gz: 87ce55e4ec9785e25cd307527e7e481fbeb6a1463905ed12140f162a91a8c3f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b007800d060e7f5181534fc9d5d8b523e83685578feb14bcfcba7d1be57343024eb171afa84530e5678ef00918438c7c11882fe386e24ca9ec7a2d7184583c56
|
|
7
|
+
data.tar.gz: 76f1c830bf4df99e0bb71141ee920973cc669c5728637d6325516a4f71f31216051cb0c60c295d2d53aa22bc649fe90969a8038b6d63b6f6cdcec8cbc5e84e7c
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.3.8] - 2026-04-15
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- `Runners::App#setup` and `#complete_setup` were not being picked up by `build_routes` because `instance_methods(false)` only returns methods defined directly on a module, not included ones; explicitly defined both methods on `Runners::App` to surface them to the route builder
|
|
9
|
+
|
|
5
10
|
## [0.3.7] - 2026-04-15
|
|
6
11
|
|
|
7
12
|
### Fixed
|
|
@@ -13,6 +13,9 @@ module Legion
|
|
|
13
13
|
false
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
+
# Explicitly surface included methods so build_routes picks them up
|
|
17
|
+
# via instance_methods(false)
|
|
18
|
+
|
|
16
19
|
include Legion::Extensions::Helpers::Lex if Legion::Extensions.const_defined?(:Helpers, false) &&
|
|
17
20
|
Legion::Extensions::Helpers.const_defined?(:Lex, false)
|
|
18
21
|
end
|