From 15962d1b01a738cf2b40bfed81783ff4f9e023ee Mon Sep 17 00:00:00 2001 From: Carolyn Date: Mon, 24 Mar 2025 14:33:20 +0000 Subject: [PATCH] prettier --- docs/setup.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/setup.md b/docs/setup.md index 9d311a36f..7d96d1653 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -197,6 +197,7 @@ More details on Pry are available at . RubyMine also offers built-in debugging functionality, with the ability to manage breakpoints in the IDE. To use this: + - To run the app with debugger: select the "core" Rails run configuration for the project in the top right, then click the bug icon to run with the debugger attached - To run tests with debugger: use the arrows in the margin of spec files beside a section or an individual test - To run anything else with debugger: go to `Run > Edit Configurations` and add the task you want to debug - options include Rails, Rake, Rspec, Ruby @@ -204,6 +205,7 @@ To use this: Click a line number to place a breakpoint. Right click a breakpoint for advanced options on when to trigger and what to log. You can view all breakpoints, toggle them and configure them from the `View Breakpoints...` menu. When the running code reaches a breakpoint, the debugger pauses execution and the debug panel can be used to: + - View the call stack and the values of variables in the current scope - Evaluate and watch expressions - Step through the code line by line