Spaces:
Sleeping
Sleeping
ruby : add .gitignore entries for ext directory (#3245)
Browse filesThis 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/
```
- 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/
|