aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code
diff options
context:
space:
mode:
authorAditya Sanghi <asanghi@me.com>2012-04-24 21:56:41 -0500
committerAditya Sanghi <asanghi@me.com>2012-04-24 21:56:41 -0500
commitd6c831c198baee2542a070c62f1608f88fe60e34 (patch)
treebc34bac025f2c07688c79f666656d0ffc6ba8766 /guides/code
parent67ede880550836ce9f66164c56c8afeb397a54da (diff)
downloadrails-d6c831c198baee2542a070c62f1608f88fe60e34.tar.gz
rails-d6c831c198baee2542a070c62f1608f88fe60e34.tar.bz2
rails-d6c831c198baee2542a070c62f1608f88fe60e34.zip
and one more time
Diffstat (limited to 'guides/code')
-rw-r--r--guides/code/getting_started/README.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/code/getting_started/README.rdoc b/guides/code/getting_started/README.rdoc
index 3c6b480bcf..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 a debugger to run the server in debugging
-mode. With gems, use <tt>gem install debugger</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