diff options
author | José Valim <jose.valim@gmail.com> | 2012-01-01 10:35:28 -0800 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2012-01-01 10:35:28 -0800 |
commit | 6f44fa0a8a3aa8668bdf7335f1cc3982679ffd48 (patch) | |
tree | ff2c6510a4bd75c823a4da76445131935a53e043 /railties/guides/code/getting_started | |
parent | 881ca628b0df2db19f70830f178b0d55efc299ca (diff) | |
parent | 423dd88d62e94ae14573d723a029506ba52cdee5 (diff) | |
download | rails-6f44fa0a8a3aa8668bdf7335f1cc3982679ffd48.tar.gz rails-6f44fa0a8a3aa8668bdf7335f1cc3982679ffd48.tar.bz2 rails-6f44fa0a8a3aa8668bdf7335f1cc3982679ffd48.zip |
Merge pull request #4251 from castlerock/rename_ruby_debug_to_ruby_debug19
rename ruby-debug to ruby-debug19
Diffstat (limited to 'railties/guides/code/getting_started')
-rw-r--r-- | railties/guides/code/getting_started/README.rdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/code/getting_started/README.rdoc b/railties/guides/code/getting_started/README.rdoc index 7c36f2356e..904624a586 100644 --- a/railties/guides/code/getting_started/README.rdoc +++ b/railties/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-debug to run the server in debugging -mode. With gems, use <tt>sudo gem install ruby-debug</tt>. Example: +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: class WeblogController < ActionController::Base def index |