diff options
author | Aditya Sanghi <asanghi@me.com> | 2012-04-17 15:31:05 +0530 |
---|---|---|
committer | Aditya Sanghi <asanghi@me.com> | 2012-04-17 15:31:05 +0530 |
commit | 0232543e0d885902b5b3ea9c4cf0638d76583a35 (patch) | |
tree | 46bcdf05e0fb2fc28fcb8492519d25311e13c76b /guides/code/getting_started | |
parent | 3df776c9ad5c1ff3e97d31b4933010b78e0a3f6e (diff) | |
download | rails-0232543e0d885902b5b3ea9c4cf0638d76583a35.tar.gz rails-0232543e0d885902b5b3ea9c4cf0638d76583a35.tar.bz2 rails-0232543e0d885902b5b3ea9c4cf0638d76583a35.zip |
stamp out ruby-debug19 with extreme prejudice :)
Diffstat (limited to 'guides/code/getting_started')
-rw-r--r-- | guides/code/getting_started/Gemfile | 2 | ||||
-rw-r--r-- | guides/code/getting_started/README.rdoc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/guides/code/getting_started/Gemfile b/guides/code/getting_started/Gemfile index 768985070c..582a176a44 100644 --- a/guides/code/getting_started/Gemfile +++ b/guides/code/getting_started/Gemfile @@ -35,4 +35,4 @@ gem 'jquery-rails' # gem 'capistrano' # To use debugger -# gem 'ruby-debug19', :require => 'ruby-debug' +# gem 'debugger' diff --git a/guides/code/getting_started/README.rdoc b/guides/code/getting_started/README.rdoc index d2014bd35f..465c180c44 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 debugger to run the server in debugging +mode. With gems, use <tt>sudo gem install debugger</tt>. Example: class WeblogController < ActionController::Base def index |