danbev commited on
Commit
984d583
·
unverified ·
1 Parent(s): 7e96237

ruby : add .gitignore entries for ext directory (#3245)

Browse files

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 <file>..." to include in what will be committed)
ext/examples/
ext/ggml/
ext/include/
ext/scripts/
ext/src/
```

Files changed (1) hide show
  1. bindings/ruby/.gitignore +5 -0
bindings/ruby/.gitignore CHANGED
@@ -1,3 +1,8 @@
1
  LICENSE
2
  pkg/
3
  lib/whisper.*
 
 
 
 
 
 
1
  LICENSE
2
  pkg/
3
  lib/whisper.*
4
+ ext/examples/
5
+ ext/ggml/
6
+ ext/include/
7
+ ext/scripts/
8
+ ext/src/