ace-support-items 0.15.3 → 0.15.4

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: b2aa17665c5e6748f75a2f65366029ebeb0079edb2f0cd16e14a98bba9f5966e
4
- data.tar.gz: 6eac1db061422fb21330c7e7327e25cd6a98d06ad6617a8ee686857a27e6764a
3
+ metadata.gz: 6492aeabe7ef8f51102255c83ac86505ce7098e6812b7596ab0dfd53844122d0
4
+ data.tar.gz: 9488767453d093f7ea8fe4bafebfa4a15144396ca4b9f5731fcd359740d0d77a
5
5
  SHA512:
6
- metadata.gz: fb9243adbcf8dea7becdee9d395c9cbba517b53f2c157567b4acfde17b9b75c37bd62f02ae5267ed060c328927d348fd0231946de7f621d714bd0661564b40cf
7
- data.tar.gz: 00b1a7f87bc1981a55d00e9b77def6550133b6252f4eab37f01b00b66ff18853aca0c0ba761746ec78feff2563c5a34bc7907fe121b018f1ddb04088901f7fe0
6
+ metadata.gz: bb59971ad131a2815bdb867e14d336dac8083b0e49bf797e7dc899b94168b246a2fe0ffd0e24db5909b6c9f09fd8b064f9b2e234e188ee65bd283ccde36bf292
7
+ data.tar.gz: 2cf75bcf144250d9f16bd857b56776488c8e838dd6b0d379619d5b56bbbf60252494f85a1c7c9a9d99d5ade61964892a744d748a591713d8a87737a8b2010c01
data/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.15.4] - 2026-03-26
11
+
12
+ ### Fixed
13
+ - `StatsLineFormatter`: corrected empty-status output formatting to avoid the malformed `Tasks: • 0 total` footer when no status buckets are present.
14
+
15
+ ### Technical
16
+ - Added regression coverage for zero-status summary formatting in `stats_line_formatter_test.rb`.
17
+
10
18
  ## [0.15.3] - 2026-03-22
11
19
 
12
20
  ### Technical
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  Shared primitives for scanning, resolving, and sanitizing ACE item stores.
5
5
 
6
- <img src="https://raw.githubusercontent.com/cs3b/ace/main/docs/brand/AgenticCodingEnvironment.Logo.XS.jpg" alt="ACE Logo" width="480">
6
+ <img src="../docs/brand/AgenticCodingEnvironment.Logo.XS.jpg" alt="ACE Logo" width="480">
7
7
  <br><br>
8
8
 
9
9
  <a href="https://rubygems.org/gems/ace-support-items"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-support-items.svg" /></a>
@@ -35,7 +35,11 @@ module Ace
35
35
  parts << "#{icon} #{count}"
36
36
  end
37
37
 
38
- line = "#{label}: #{parts.join(" | ")}"
38
+ line = if parts.empty?
39
+ "#{label}:"
40
+ else
41
+ "#{label}: #{parts.join(" | ")}"
42
+ end
39
43
 
40
44
  shown = stats[:total]
41
45
  total = total_count || shown
@@ -3,7 +3,7 @@
3
3
  module Ace
4
4
  module Support
5
5
  module Items
6
- VERSION = "0.15.3"
6
+ VERSION = "0.15.4"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-support-items
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.3
4
+ version: 0.15.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz