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 +4 -4
- data/CHANGELOG.md +17 -0
- data/README.md +13 -1
- data/lib/ace/support/fs/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: 3d524d0d2343ac1d77c25b8292b5da7c39d1726ad3e5f6ece3ae51c8dd5abd14
|
|
4
|
+
data.tar.gz: 39142b15c7f4c097bce8949a26d56c014121ddaf8baed817be0e5c399b8f905a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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="
|
|
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)
|
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.
|
|
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:
|
|
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
|