diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 107 |
1 files changed, 101 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore index 4b565a4230..7ead3a81f5 100644 --- a/.gitignore +++ b/.gitignore @@ -4,25 +4,33 @@ *.a *.bak *.bc +*.bundle *.dSYM *.dmyh *.dylib *.elc *.i +*.ii *.inc *.log *.o +*.o.tmp *.obj *.old *.orig +*.pch *.pdb +*.rbinc +*.rbbin *.rej *.s *.sav +*.sl +*.so +*.so.* *.swp *.yarb *~ -.*-* .*.list .*.time .DS_Store @@ -32,6 +40,8 @@ .pc .ppack .svn +.time +.ruby-version Makefile cygruby*.def extconf.h @@ -40,6 +50,8 @@ y.tab.c *.gcda *.gcno *.gcov +*.vscode +!misc/.vscode lcov*.info # / @@ -50,7 +62,11 @@ lcov*.info /*.pc /*.rc /*_prelude.c +/.downloaded-cache +/.top-enc.mk +/build*/ /COPYING.LIB +/ChangeLog /Doxyfile /GNUmakefile /README.atheos @@ -60,6 +76,7 @@ lcov*.info /archive /autom4te*.cache /automake +/benchmark/benchmark-driver /beos /bmlog-* /breakpoints.gdb @@ -80,6 +97,7 @@ lcov*.info /enc.mk /encdb.h /exts.mk +/gc/*/exts.mk /goruby /id.[ch] /largefile.h @@ -107,23 +125,34 @@ lcov*.info /rename2.h /repack /revision.h +/revision.tmp +/ripper.tmp.y /riscos /rubicon /ruby /ruby-runner /ruby-runner.h /ruby-man.rd.gz +/rubyspec_temp /run.gdb /sizes.c +/static-ruby /test.rb /test-coverage.dat /tmp +/vcpkg_installed /transdb.h /uncommon.mk /verconf.h /verconf.mk /web -/yasmdata.rb + +# /bin/ + +/bin/*.exe +/bin/*.dll +/bin/goruby +/bin/ruby # /benchmark/ /benchmark/bm_require.data @@ -137,26 +166,36 @@ lcov*.info /enc/jis/props.h /enc/unicode/data +# /coroutine/ +!/coroutine/**/*.s +!/coroutine/**/*.S + # /enc/trans/ /enc/trans/*.c /enc/trans/*.def /enc/trans/*.exp /enc/trans/*.lib -/enc/trans/.time # /exe/ +/exe/goruby /exe/ruby -/exe/.time # /ext/ /ext/extinit.c /ext/configure-ext.mk /ext/*/exts.mk +# /ext/-test-/cxxanyargs +/ext/-test-/cxxanyargs/failure*.failed + # /ext/-test-/win32/dln/ +/ext/-test-/win32/dln/dlntest.dll /ext/-test-/win32/dln/dlntest.exp /ext/-test-/win32/dln/dlntest.lib +# /ext/-test-/gems +/ext/-test-/gems + # /ext/etc/ /ext/etc/constdefs.h @@ -169,7 +208,10 @@ lcov*.info # /ext/ripper/ /ext/ripper/eventids1.c +/ext/ripper/eventids1.h +/ext/ripper/.eventids2-check /ext/ripper/eventids2table.c +/ext/ripper/ripper_init.c /ext/ripper/ripper.* /ext/ripper/ids1 /ext/ripper/ids2 @@ -184,7 +226,14 @@ lcov*.info /gems/src /gems/*-* -# /spec/bundler +# /lib/ +/lib/ruby/[1-9]*.* +/lib/ruby/vendor_ruby + +# /misc/ +/misc/**/__pycache__ + +# for `make test-bundler` /.rspec_status # /tool/ @@ -193,4 +242,50 @@ lcov*.info # /win32/ /win32/*.ico -/win32/.time + + +# YJIT +/yjit-bench +/yjit_exit_locations.dump + +# Rust +/target + +# /wasm/ +/wasm/tests/*.wasm + +# prism +/lib/prism/compiler.rb +/lib/prism/dispatcher.rb +/lib/prism/dot_visitor.rb +/lib/prism/dsl.rb +/lib/prism/inspect_visitor.rb +/lib/prism/mutation_compiler.rb +/lib/prism/node.rb +/lib/prism/reflection.rb +/lib/prism/serialize.rb +/lib/prism/visitor.rb +/prism/internal/diagnostic.h +/prism/api_node.c +/prism/ast.h +/prism/diagnostic.c +/prism/json.c +/prism/node.c +/prism/prettyprint.c +/prism/serialize.c +/prism/tokens.c +/prism/srcs.mk +/dump_ast + +# prism (old file) +/prism/token_type.c + +# tool/update-NEWS-gemlist.rb +/bundled_gems.json +/default_gems.json +/gems/default_gems + +# AI agents +/.claude +/AGENTS.md +/CLAUDE.md |
