-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy path.dockerignore
More file actions
37 lines (34 loc) · 871 Bytes
/
Copy path.dockerignore
File metadata and controls
37 lines (34 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Keep the build context small. .git is intentionally NOT ignored: rbs.gemspec
# builds its file list with `git ls-files`.
#
# Safe to ignore here: untracked/generated paths, and tracked paths the gemspec
# already rejects (so `gem build` does not expect them on disk). Do NOT ignore a
# tracked path the gemspec ships — `gem build` would fail with "... are not
# files". .vscode/ and benchmark/ are tracked but rejected by the gemspec.
.vscode/
benchmark/
# Editor / tooling / worktree copies (untracked; each is a full repo clone)
.claude/
trees/
.devcontainer/
.idea/
.ruby-lsp/
.yardoc/
doc/
datasets/
tmp/
# Build artifact — rebuilt inside the image by `rake wasm:jruby_setup`
lib/rbs/wasm/*.wasm
*.gem
ext/**/*.o
ext/**/*.so
ext/**/*.bundle
*.log
# Local scratch / experiment files
flamegraph.html
gc.html
foo.rbs
sorted.json
string.json
Gemfile-*
gemfiles/