lesli_system 1.0.1 → 1.0.2
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/lib/lesli_system/engines.rb +5 -2
- data/lib/lesli_system/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28356bfdbdc31259937f56ee05cec3e71d4d83e7d19e00cf54d3e18e3d765da1
|
4
|
+
data.tar.gz: 922a34b96275b78efa01e7c2a425a456fbe742434dc52c1bdd863f66f8b5e56f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b112fe29aa5bfa716cf8ccfacd2cca529afeaac0c152356a0792597b919d62fd9daebded1977ff03e3778c0c81a5fe58ba03d82bd6ebc913377cea096205a1e
|
7
|
+
data.tar.gz: d96544ea9192c913c4caabfd9d7c989ef0a9d8413cd1e583e1adf6a38ae0bf290ffacea941414922e8f834077fc0936bc5153ff38e0f7473f20d5b3a65a891bc
|
data/lib/lesli_system/engines.rb
CHANGED
@@ -47,6 +47,8 @@ module LesliSystem
|
|
47
47
|
# do not include engines if not is locally installed
|
48
48
|
next unless File.exist?(engine_local_path)
|
49
49
|
end
|
50
|
+
|
51
|
+
gem_specification = Gem::Specification.find_by_name(engine.underscore)
|
50
52
|
|
51
53
|
# engine completelly information
|
52
54
|
ENGINES[engine] = {
|
@@ -54,9 +56,10 @@ module LesliSystem
|
|
54
56
|
:name => engine,
|
55
57
|
:path => engine_instance::Engine.routes.find_script_name({}),
|
56
58
|
:version => engine_instance::VERSION,
|
57
|
-
:description =>
|
59
|
+
:description => gem_specification.description,
|
60
|
+
:metadata => gem_specification.metadata,
|
58
61
|
:build => engine_instance::BUILD,
|
59
|
-
:dir =>
|
62
|
+
:dir => gem_specification.gem_dir
|
60
63
|
}
|
61
64
|
end
|
62
65
|
|
data/lib/lesli_system/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lesli_system
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Lesli Development Team
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
LesliSystem provides shared, reusable system-level components for The Lesli Framework.
|