From 20d203aacfa2a062ccda0e1658cf4a85a42908b8 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 13 Jun 2025 10:04:20 +0200 Subject: [PATCH] ruby : add .gitignore entries for ext directory (#3245) This commit adds entries to `.gitignore` for directories in the `ext` directory. The motivation for this is that currently after building locally these following files are reported by git as untracked: ```console Untracked files: (use "git add ..." to include in what will be committed) ext/examples/ ext/ggml/ ext/include/ ext/scripts/ ext/src/ ``` --- bindings/ruby/.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bindings/ruby/.gitignore b/bindings/ruby/.gitignore index e04a90a9..4bafb222 100644 --- a/bindings/ruby/.gitignore +++ b/bindings/ruby/.gitignore @@ -1,3 +1,8 @@ LICENSE pkg/ lib/whisper.* +ext/examples/ +ext/ggml/ +ext/include/ +ext/scripts/ +ext/src/