feat: proper ruby parser for dependencies

This commit is contained in:
relikd
2025-08-27 17:54:49 +02:00
parent 376a3892d4
commit 2c51910ee2
5 changed files with 841 additions and 21 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
help:
@echo 'available commands: test, test-git, test-parser'
git-clone:
git clone --depth 1 https://github.com/Homebrew/homebrew-core/ git-clone
test-git: git-clone
python3 -c 'import test; test.testCoreFormulae()'
test-parser:
python3 -c 'import test; test.testConfigVariations()'
test: test-git test-parser