ace-support-core 0.29.1 → 0.29.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/CHANGELOG.md +4 -0
- data/exe/ace-framework +13 -0
- data/lib/ace/core/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82c684998c5b94d90832c414260903726372e0dcde019bd2f61cc00901c6a76f
|
|
4
|
+
data.tar.gz: d6f57709fc00a4bbf2336b04baedf1a0ab4281dd67a89192af47ef70fe60253f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd6d241017b5b2b375c067f6458018849452753822e048e999b5876947e0ec408ead0c543778077c3094650867b6e1c305147cbb3fff27492307a64b9cf24048
|
|
7
|
+
data.tar.gz: '001165592f704c94bf49f0851fcab10d2f2280f2e798937246d748e075f07dd240a3a86c03420b48592f9de5e0e1672d9a37547a2cd43ee06c677f2eec8535e1'
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.29.2] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Added `ace-framework` to packaged files and executables so the CLI is shipped in RubyGems installs.
|
|
10
14
|
|
|
11
15
|
## [0.29.1] - 2026-03-29
|
|
12
16
|
|
data/exe/ace-framework
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "ace/core"
|
|
5
|
+
require "ace/core/cli"
|
|
6
|
+
|
|
7
|
+
# Start FrameworkCLI (separate from Ace::Core::CLI module which is ace-support-cli infrastructure)
|
|
8
|
+
begin
|
|
9
|
+
Ace::Core::FrameworkCLI.start(ARGV)
|
|
10
|
+
rescue Ace::Support::Cli::Error => e
|
|
11
|
+
warn e.message
|
|
12
|
+
exit(e.exit_code)
|
|
13
|
+
end
|
data/lib/ace/core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-support-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.29.
|
|
4
|
+
version: 0.29.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
@@ -56,7 +56,8 @@ description: Foundational infrastructure gem providing configuration cascade res
|
|
|
56
56
|
gem following ace-support-* pattern for infrastructure components.
|
|
57
57
|
email:
|
|
58
58
|
- mc@cs3b.com
|
|
59
|
-
executables:
|
|
59
|
+
executables:
|
|
60
|
+
- ace-framework
|
|
60
61
|
extensions: []
|
|
61
62
|
extra_rdoc_files: []
|
|
62
63
|
files:
|
|
@@ -65,6 +66,7 @@ files:
|
|
|
65
66
|
- LICENSE
|
|
66
67
|
- README.md
|
|
67
68
|
- Rakefile
|
|
69
|
+
- exe/ace-framework
|
|
68
70
|
- lib/ace/core.rb
|
|
69
71
|
- lib/ace/core/atoms/command_executor.rb
|
|
70
72
|
- lib/ace/core/atoms/config_summary.rb
|