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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4c45ddfd0f8690753b1f61d0bd7edd9b7a0b6f2061ee5bb1d8956a3e856578da
4
- data.tar.gz: 110e674c92fa17291934c47baec9f8e1296f86263f3b6c4e14e07f0a6a8830a8
3
+ metadata.gz: 45837f5a66cdeaedc543fb607f4dce4b21070ed02482d68b031c7ed287ff4177
4
+ data.tar.gz: 073652f79f5b2e76b666365c42e3c1ee57ecf7df67dcebb25d869fb169976972
5
5
  SHA512:
6
- metadata.gz: 220feda7572bad571d6a6afd12762a9d97dd312554fb43a530fa7a1c0038847769d90422bddd27f570fdbf5bc20c882739670db5fbe3ee3ae6182ad24433e86a
7
- data.tar.gz: 65f4679717750db4105ecde69012680d2125344f441b8188036827089c2561f73577cd2b59e431edece55abbcd807c21d073919541ee88027854c535df5fab12
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?
@@ -3,7 +3,7 @@
3
3
  module Ace
4
4
  module Support
5
5
  module Cli
6
- VERSION = "0.6.3"
6
+ VERSION = "0.6.5"
7
7
  end
8
8
  end
9
9
  end
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.3
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-03-29 00:00:00.000000000 Z
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.