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