-
Notifications
You must be signed in to change notification settings - Fork 185
/
.gitignore
134 lines (112 loc) · 2.48 KB
/
.gitignore
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# macOS
.DS_Store
Info.plist
*.dSYM
# Editors
*~
/.vscode
# IntelliJ
.idea
*.iml
# NetBeans
nbproject
# Eclipse
.classpath
.project
.settings
.factorypath
.metadata
workingsets.xml
# C extensions
# We use more precise ignores than e.g. `*.o`
# to catch unexpected native build files in other directories
bench/chunky_png/oily_png/**/*.o
bench/chunky_png/oily_png/**/*.so
bench/chunky_png/oily_png/**/*.bundle
bench/chunky_png/oily_png/ext/oily_png/Makefile
bench/psd.rb/psd_native/**/*.o
bench/psd.rb/psd_native/**/*.so
bench/psd.rb/psd_native/**/*.bundle
bench/psd.rb/psd_native/ext/psd_native/Makefile
src/main/c/**/*.o
src/main/c/**/*.so
src/main/c/**/*.a
src/main/c/**/*.bundle
src/main/c/**/*.dylib
src/main/c/**/extconf.h
src/main/c/**/mkmf.log
src/main/c/*/Makefile
!src/main/c/spawn-helper/Makefile
!src/main/c/truffleposix/Makefile
src/main/c/cext-trampoline/trampoline.c
src/main/c/cext/wrappers.c
src/main/c/etc/constdefs.h
src/main/c/spawn-helper/spawn-helper
src/main/c/debug
src/main/c/rbs
spec/truffle/fixtures/libtestnfi.so
spec/truffle/fixtures/libtestnfi.dylib
test/truffle/cexts/**/*.o
test/truffle/cexts/**/*.so
test/truffle/cexts/**/*.bundle
test/truffle/cexts/**/mkmf.log
test/truffle/cexts/**/Makefile
test/mri/tests/cext-c/**/*.o
test/mri/tests/cext-c/**/*.so
test/mri/tests/cext-c/**/*.bundle
test/mri/tests/cext-c/**/extconf.h
test/mri/tests/cext-c/**/mkmf.log
test/mri/tests/cext-c/**/Makefile
test/mri/tests/cext-c/**/depend
/.ext
# Bundle
spec/ffi/.bundle/config
spec/ffi/vendor/bundle
test/truffle/cexts/grpc/vendor/bundle
test/truffle/gems/default-bundled-gems/.bundle/config
# mx
/mx.truffleruby/.pydevproject
/mx.truffleruby/*.pyc
/mx.truffleruby/env
/mx.truffleruby/eclipse-launches
/mxbuild
/TRUFFLERUBY*.dist
/eclipseformat.backup.zip
/mx.truffleruby/__pycache__
.checkstyle
# ruby/spec
/rubyspec_temp
# Tests
/mri_tests.txt
/test/truffle/ecosystem/blog6/Gemfile
/test/truffle/ecosystem/blog6/Gemfile.lock
/test/truffle/integration/gem-testing
/truffleruby-gem-test-pack
/tool/docker
/tool/llvm-ol7/*.tar.gz
# Benchmarking
/bench-results.json
/bench-results-processed.json
# Diagnostic output directory
dumps/
graal_dumps/
/native-image-build-rubyvm.json
# Profiling
profiles/
/time_metrics.stacks
/time_metrics_flamegraph.svg
# Jay
tool/jay/jay
# Generated
doc/user/README.md
# Ignore .rb/.log files at the root, it's temporary files to debug some issue
/*.rb
/*.log
# Ignore graphs and Seafoam generated illustrations
/*.bgv
/*.cfg
/*.pdf
/*.svg
# Jacoco
jacoco.exec
/coverage/