rdbgrc to ignore extraneous stack frames

This commit is contained in:
Dylan Knutson
2025-07-28 00:21:59 +00:00
parent 8f610b8fa7
commit ea26ca6e06
2 changed files with 9 additions and 0 deletions

8
.devcontainer/.rdbgrc Normal file
View File

@@ -0,0 +1,8 @@
config append skip_path bin/bundle
config append skip_path bin/rspec
config append skip_path /bundler/
config append skip_path gems/sorbet-runtime-
config append skip_path gems/rspec-core-
config append skip_path lib/active_record/transactions.rb
config append skip_path lib/active_support/notifications.rb
config append skip_path has_aux_table/util.rb

View File

@@ -31,3 +31,4 @@ RUN BUNDLE_FROZEN=true MAKE="make -j$(nproc)" bundle install --jobs $(nproc)
RUN echo 'alias rspec="bundle exec rspec"' >> ~/.bashrc RUN echo 'alias rspec="bundle exec rspec"' >> ~/.bashrc
RUN echo 'alias tapioca="bundle exec tapioca"' >> ~/.bashrc RUN echo 'alias tapioca="bundle exec tapioca"' >> ~/.bashrc
RUN echo 'alias srb="bundle exec srb"' >> ~/.bashrc RUN echo 'alias srb="bundle exec srb"' >> ~/.bashrc
COPY ./.devcontainer/.rdbgrc /home/vscode/.rdbgrc