ace-support-cli 0.6.3 → 0.6.5
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 +16 -0
- data/README.md +12 -0
- data/lib/ace/support/cli/help/usage.rb +3 -2
- data/lib/ace/support/cli/version.rb +1 -1
- 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: 45837f5a66cdeaedc543fb607f4dce4b21070ed02482d68b031c7ed287ff4177
|
|
4
|
+
data.tar.gz: 073652f79f5b2e76b666365c42e3c1ee57ecf7df67dcebb25d869fb169976972
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df7c9b4bcb11ded58fa2b5348a27237e022e21e18416247e7a4f3c3fc4849bd88173cdda6a484c36352220a2aa271cd6ce2f4b61bb83bb37ce5409565b57ff8c
|
|
7
|
+
data.tar.gz: af27c4d0a6bd9038edf4cbd73cb2c80c17434cec397afc51873faaef8fc80a7628ce898a713ada153c95b6826fbf43210b9cfe7ac0ac3ad8bae6ea1c036b7c7d
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.6.5] - 2026-04-13
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- **ace-support-cli v0.6.5**: Standardized shared package tests to the fast-only layout and updated testing flow defaults.
|
|
11
|
+
|
|
12
|
+
## [0.6.4] - 2026-04-11
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- **ace-support-cli v0.6.4**: Corrected top-level `--help` usage output formatting so usage is rendered consistently as `Usage: <program> [COMMAND]`, and aligned help tests to validate this contract.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Migrated deterministic test layout to `test/fast/` for fast-only package coverage.
|
|
19
|
+
- Documented fast-only testing contract in README and retained package verification commands:
|
|
20
|
+
- `ace-test ace-support-cli`
|
|
21
|
+
- `ace-test ace-support-cli all`
|
|
22
|
+
|
|
7
23
|
## [0.6.3] - 2026-03-29
|
|
8
24
|
|
|
9
25
|
### Technical
|
data/README.md
CHANGED
|
@@ -30,6 +30,18 @@
|
|
|
30
30
|
|
|
31
31
|
**Keep agent invocations safe** - preserve a stable CLI contract so coding agents can call `ace-*` tools reliably in mixed human/agent workflows.
|
|
32
32
|
|
|
33
|
+
## Testing
|
|
34
|
+
|
|
35
|
+
This package is **fast-only** in the ACE testing model.
|
|
36
|
+
|
|
37
|
+
- Deterministic test coverage lives under `test/fast/`.
|
|
38
|
+
- This migration does not introduce `test/feat/` or `test/e2e/` for this package.
|
|
39
|
+
|
|
40
|
+
Verification commands:
|
|
41
|
+
|
|
42
|
+
- `ace-test ace-support-cli`
|
|
43
|
+
- `ace-test ace-support-cli all`
|
|
44
|
+
|
|
33
45
|
---
|
|
34
46
|
|
|
35
47
|
Part of [ACE](https://github.com/cs3b/ace)
|
|
@@ -13,13 +13,14 @@ module Ace
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
def render
|
|
16
|
+
usage = "Usage: #{resolved_program_name} [COMMAND]"
|
|
16
17
|
commands = visible_commands
|
|
17
18
|
groups = command_groups
|
|
18
|
-
output = if groups && !groups.empty?
|
|
19
|
+
output = [usage, if groups && !groups.empty?
|
|
19
20
|
format_grouped(commands, groups)
|
|
20
21
|
else
|
|
21
22
|
format_flat(commands, header: "COMMANDS")
|
|
22
|
-
end
|
|
23
|
+
end].join("\n\n")
|
|
23
24
|
|
|
24
25
|
examples = help_examples
|
|
25
26
|
output += "\n\n#{format_examples(examples)}" if examples && !examples.empty?
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-support-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-04-20 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
12
|
description: Provides command DSL, option parsing, registry routing, and runner primitives
|
|
13
13
|
for ACE CLI tools.
|