You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: activesupport/lib/active_support/core_ext/kernel/debugger.rb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
moduleKernel
2
2
unlessrespond_to?(:debugger)
3
-
# Starts a debugging session if a debugger has been loaded (call rails server --debugger to do load it).
3
+
# Starts a debugging session if the +debugger+ gem has been loaded (call rails server --debugger to do load it).
4
4
defdebugger
5
-
message="\n***** Debugger requested, but was not available (ensure debugger is listed in Gemfile/installed as gem): Start server with --debugger to enable *****\n"
5
+
message="\n***** Debugger requested, but was not available (ensure the debugger gem is listed in Gemfile/installed as gem): Start server with --debugger to enable *****\n"
Copy file name to clipboardExpand all lines: guides/source/debugging_rails_applications.textile
+7-14Lines changed: 7 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -191,27 +191,21 @@ Completed in 0.01224 (81 reqs/sec) | DB: 0.00044 (3%) | 302 Found [http://localh
191
191
192
192
Adding extra logging like this makes it easy to search for unexpected or unusual behavior in your logs. If you add extra logging, be sure to make sensible use of log levels, to avoid filling your production logs with useless trivia.
193
193
194
-
h3. Debugging with +debugger+ gem
194
+
h3. Debugging with the +debugger+ gem
195
195
196
196
When your code is behaving in unexpected ways, you can try printing to logs or the console to diagnose the problem. Unfortunately, there are times when this sort of error tracking is not effective in finding the root cause of a problem. When you actually need to journey into your running source code, the debugger is your best companion.
197
197
198
198
The debugger can also help you if you want to learn about the Rails source code but don't know where to start. Just debug any request to your application and use this guide to learn how to move from the code you have written deeper into Rails code.
199
199
200
200
h4. Setup
201
201
202
-
The debugger used by Rails, +debugger+, comes as a gem. To install it, just run:
202
+
Rails uses the +debugger+ gem to set breakpoints and step through live code. To install it, just run:
203
203
204
204
<shell>
205
205
$ gem install debugger
206
206
</shell>
207
207
208
-
TIP: If you are using Ruby 1.9, you can install a compatible version of +ruby-debug+ by running +gem install debugger+
209
-
210
-
In case you want to download a particular version or get the source code, refer to the "project's page on rubyforge":http://rubyforge.org/projects/ruby-debug/.
211
-
212
-
Rails has had built-in support for ruby-debug since Rails 2.0. Inside any Rails application you can invoke the debugger by calling the +debugger+ method.
213
-
214
-
+ruby-debug19+ gem has been replaced by the +debugger+ gem due to multiple issues on Ruby 1.9.3.
208
+
Rails has had built-in support for debugging since Rails 2.0. Inside any Rails application you can invoke the debugger by calling the +debugger+ method.
215
209
216
210
Here's an example:
217
211
@@ -272,7 +266,7 @@ continue edit frame method putl set tmate where
272
266
273
267
TIP: To view the help menu for any command use +help <command-name>+ in active debug mode. For example: _+help var+_
274
268
275
-
The next command to learn is one of the most useful: +list+. You can also abbreviate the debugging commands by supplying just enough letters to distinguish them from other commands, so you can also use +l+ for the +list+ command.
269
+
The next command to learn is one of the most useful: +list+. You can abbreviate any debugging command by supplying just enough letters to distinguish them from other commands, so you can also use +l+ for the +list+ command.
276
270
277
271
This command shows you where you are in the code by printing 10 lines centered around the current line; the current line in this particular case is line 6 and is marked by +=>+.
278
272
@@ -487,7 +481,7 @@ class Author < ActiveRecord::Base
487
481
end
488
482
</ruby>
489
483
490
-
TIP: You can use a debugger while using +rails console+. Just remember to +require "debugger"+ before calling the +debugger+ method.
484
+
TIP: You can use the debugger while using +rails console+. Just remember to +require "debugger"+ before calling the +debugger+ method.
491
485
492
486
<shell>
493
487
$ rails console
@@ -605,7 +599,7 @@ A simple quit tries to terminate all threads in effect. Therefore your server wi
605
599
606
600
h4. Settings
607
601
608
-
There are some settings that can be configured in the +debugger+ gem to make it easier to debug your code. Here are a few of the available options:
602
+
The +debugger+ gem can automatically show the code you're stepping through and reload it when you change it in an editor. Here are a few of the available options:
609
603
610
604
* +set reload+: Reload source code when changed.
611
605
* +set autolist+: Execute +list+ command on every breakpoint.
@@ -614,7 +608,7 @@ There are some settings that can be configured in the +debugger+ gem to make it
614
608
615
609
You can see the full list by using +help set+. Use +help set _subcommand_+ to learn about a particular +set+ command.
616
610
617
-
TIP: You can include any number of these configuration lines inside a +.rdebugrc+ file in your HOME directory. +debugger+ gem will read this file every time it is loaded and configure itself accordingly.
611
+
TIP: You can save these settings in an +.rdebugrc+ file in your home directory. The debugger reads these global settings when it starts.
0 commit comments