From ea26ca6e06a5abde0260e2f89da67df6f3a518ac Mon Sep 17 00:00:00 2001 From: Dylan Knutson Date: Mon, 28 Jul 2025 00:21:59 +0000 Subject: [PATCH] rdbgrc to ignore extraneous stack frames --- .devcontainer/.rdbgrc | 8 ++++++++ .devcontainer/Dockerfile | 1 + 2 files changed, 9 insertions(+) create mode 100644 .devcontainer/.rdbgrc diff --git a/.devcontainer/.rdbgrc b/.devcontainer/.rdbgrc new file mode 100644 index 0000000..8ca08d9 --- /dev/null +++ b/.devcontainer/.rdbgrc @@ -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 diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6415a11..423505e 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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 tapioca="bundle exec tapioca"' >> ~/.bashrc RUN echo 'alias srb="bundle exec srb"' >> ~/.bashrc +COPY ./.devcontainer/.rdbgrc /home/vscode/.rdbgrc