mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
remove Mongrel from debugger docs
This commit is contained in:
parent
ebe61bf37c
commit
cffae06a4f
1 changed files with 1 additions and 3 deletions
|
@ -250,7 +250,7 @@ Make sure you have started your web server with the option +--debugger+:
|
|||
|
||||
<shell>
|
||||
~/PathTo/rails_project$ rails server --debugger
|
||||
=> Booting Mongrel (use 'rails server webrick' to force WEBrick)
|
||||
=> Booting WEBrick
|
||||
=> Rails 3.0.0 application starting on http://0.0.0.0:3000
|
||||
=> Debugger enabled
|
||||
...
|
||||
|
@ -258,8 +258,6 @@ Make sure you have started your web server with the option +--debugger+:
|
|||
|
||||
TIP: In development mode, you can dynamically +require \'ruby-debug\'+ instead of restarting the server, if it was started without +--debugger+.
|
||||
|
||||
In order to use Rails debugging you'll need to be running either *WEBrick* or *Mongrel*. For the moment, no alternative servers are supported.
|
||||
|
||||
h4. The Shell
|
||||
|
||||
As soon as your application calls the +debugger+ method, the debugger will be started in a debugger shell inside the terminal window where you launched your application server, and you will be placed at ruby-debug's prompt +(rdb:n)+. The _n_ is the thread number. The prompt will also show you the next line of code that is waiting to run.
|
||||
|
|
Loading…
Reference in a new issue