diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2012-04-25 05:09:14 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2012-04-25 05:09:14 -0700 |
commit | bd6203f9f01dddf67187ef0868a97afd2419e870 (patch) | |
tree | dc1c5517c15e721a44c939ca7204ae8abfa1152d /guides/code/getting_started/README.rdoc | |
parent | 217e9c088e07d55007c5f63a56ad5747cf2f646d (diff) | |
parent | d6c831c198baee2542a070c62f1608f88fe60e34 (diff) | |
download | rails-bd6203f9f01dddf67187ef0868a97afd2419e870.tar.gz rails-bd6203f9f01dddf67187ef0868a97afd2419e870.tar.bz2 rails-bd6203f9f01dddf67187ef0868a97afd2419e870.zip |
Merge pull request #5880 from asanghi/master
Stamp out ruby-debug with debugger everywhere else in the code base
Diffstat (limited to 'guides/code/getting_started/README.rdoc')
-rw-r--r-- | guides/code/getting_started/README.rdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/code/getting_started/README.rdoc b/guides/code/getting_started/README.rdoc index d2014bd35f..b5d7b6436b 100644 --- a/guides/code/getting_started/README.rdoc +++ b/guides/code/getting_started/README.rdoc @@ -86,8 +86,8 @@ programming in general. Debugger support is available through the debugger command when you start your Mongrel or WEBrick server with --debugger. This means that you can break out of execution at any point in the code, investigate and change the model, and then, -resume execution! You need to install ruby-debug19 to run the server in debugging -mode. With gems, use <tt>sudo gem install ruby-debug19</tt>. Example: +resume execution! You need to install the 'debugger' gem to run the server in debugging +mode. Add gem 'debugger' to your Gemfile and run <tt>bundle</tt> to install it. Example: class WeblogController < ActionController::Base def index |