ace-support-fs 0.3.0 → 0.3.3

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: 2c4e0121b057bd9f4bc10f6ecfd197a0df1a6050e18f1a82a855e4364a85629c
4
- data.tar.gz: 23b62d54c4026a400e90c2a72577b87c8e482219d9035f1a867713d76a511e40
3
+ metadata.gz: 3d524d0d2343ac1d77c25b8292b5da7c39d1726ad3e5f6ece3ae51c8dd5abd14
4
+ data.tar.gz: 39142b15c7f4c097bce8949a26d56c014121ddaf8baed817be0e5c399b8f905a
5
5
  SHA512:
6
- metadata.gz: 329d52c1e0c1fb79a4466732188680570b3003cd3333a29a87c1283bc235d0d4f38c53d34e6b118aa9fe53e78e0197527f867714e5e58ccaa3a9bec0d93a8321
7
- data.tar.gz: 3abd750584076f9e59e94a39651db0cafbf58efac334282f083c9fffcb4e541f37d877155512e5ceed0b88f92a929271cbe8c95d772fa2fcbbef5686960a2da0
6
+ metadata.gz: d11524c4025cb4f89dd476d79b67b2a5fa652adcdfc4e5e9185aa89ed58030664937d7011878e3f686796a45b8037db79cc4950a5eb5753defbeb13f3df5d53e
7
+ data.tar.gz: 296cf754fd28415054985396f41487163439fe0b1cdc64cad3d72f059116840535df850898a5e0374a9317c4c9e2b6f5401b57832702a3d1d4d3fa231a57e0aa
data/CHANGELOG.md CHANGED
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.3] - 2026-04-13
11
+
12
+ ### Changed
13
+ - **ace-support-fs v0.3.3**: Standardized shared package tests to the fast-only layout and updated testing flow defaults.
14
+
15
+
16
+ ## [0.3.2] - 2026-04-11
17
+
18
+ ### Technical
19
+ - Moved deterministic tests from `test/atoms` and `test/molecules` into `test/fast/` to align with the fast-only package migration contract.
20
+ - Updated README testing guidance to document `ace-test ace-support-fs` / `ace-test ace-support-fs all` and explicitly avoid `test/feat` and `test/e2e` layers.
21
+
22
+ ## [0.3.1] - 2026-03-29
23
+
24
+ ### Technical
25
+ - Normalized published gem metadata so RubyGems and Ruby Toolbox use current release information instead of the 1980 fallback date.
26
+
10
27
  ## [0.3.0] - 2026-03-23
11
28
 
12
29
  ### Technical
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  File system primitives for ACE path resolution and project root discovery.
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-fs"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-support-fs.svg" /></a>
@@ -24,6 +24,18 @@
24
24
 
25
25
  **Build config scans** - discover and rank candidate configuration directories during resolution, supporting the cascade logic in [ace-support-config](../ace-support-config).
26
26
 
27
+ ## Testing Contract
28
+
29
+ This package is **fast-only** in the ACE testing model.
30
+
31
+ - Deterministic coverage lives under `test/fast/`.
32
+ - This migration does not introduce `test/feat/` or `test/e2e/` for this package.
33
+
34
+ Run:
35
+
36
+ - `ace-test ace-support-fs`
37
+ - `ace-test ace-support-fs all`
38
+
27
39
  ---
28
40
 
29
41
  Part of [ACE](https://github.com/cs3b/ace)
@@ -3,7 +3,7 @@
3
3
  module Ace
4
4
  module Support
5
5
  module Fs
6
- VERSION = "0.3.0"
6
+ VERSION = "0.3.3"
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-fs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
10
+ date: 2026-04-20 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: Infrastructure gem providing unified path expansion, project root detection,
13
13
  and directory traversal functionality for ace-* gems. Library-only gem following