From b6039e27a32cdbdee99d264ee70a5020c60638d4 Mon Sep 17 00:00:00 2001 From: hovryn Date: Tue, 23 Sep 2025 22:08:46 -0400 Subject: [PATCH] Update README.md --- README.md | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index df0a351..fb746a4 100644 --- a/README.md +++ b/README.md @@ -11,15 +11,18 @@ This tool works to detect Roblox workspaces within .rbxm(x) model files, which c ## Project Structure -- `detector.luau`: Main entrypoint -- `lib/cli.luau`: CLI argument parsing and usage -- `lib/core.luau`: Core detection logic (workspace scanning, file analysis) -- `lib/fileproc.luau`: File and directory processing -- `tests/`: Test models for validation - - `containsworkspace/`: Models that should be detected as containing workspaces - - `doesntcontainworkspace/`: Models that should NOT be detected as containing workspaces - - `zlibCompressed/`: Models compressed with zlib - - `binaryFiles/`: Binary or extensionless test files +``` +lib/ +├─ fileproc.luau : File and directory processing +├─ cli.luau : CLI argument parsing and usage +├─ core.luau : Core detection logic (workspace scanning, etc) +tests/ +├─ containsworkspace/ : Test cases that should contain workspaces +├─ doesntcontainworkspace/ : Test cases that shouldn't contain workspaces +├─ zlibCompressed/ : Zlib compressed test casees +├─ binaryFiles/ : Extensionless/binary test cases +detector.luau : Main entrypoint +``` ## Installation