diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2012-01-01 22:40:23 +0530 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2012-01-01 22:40:23 +0530 |
commit | 423dd88d62e94ae14573d723a029506ba52cdee5 (patch) | |
tree | 7357c3c6d7132e463a69af45202752ce6af0f95e /railties | |
parent | f3e079e8b54da1c4d0511495ced3f68c1b7a46f1 (diff) | |
download | rails-423dd88d62e94ae14573d723a029506ba52cdee5.tar.gz rails-423dd88d62e94ae14573d723a029506ba52cdee5.tar.bz2 rails-423dd88d62e94ae14573d723a029506ba52cdee5.zip |
rename ruby-debug to ruby-debug19
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/code/getting_started/README.rdoc | 4 | ||||
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/README | 4 | ||||
-rw-r--r-- | railties/lib/rails/rack/debugger.rb | 2 |
3 files changed, 5 insertions, 5 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 diff --git a/railties/lib/rails/generators/rails/app/templates/README b/railties/lib/rails/generators/rails/app/templates/README index 7c36f2356e..904624a586 100644 --- a/railties/lib/rails/generators/rails/app/templates/README +++ b/railties/lib/rails/generators/rails/app/templates/README @@ -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 diff --git a/railties/lib/rails/rack/debugger.rb b/railties/lib/rails/rack/debugger.rb index 831188eeee..5a78da1731 100644 --- a/railties/lib/rails/rack/debugger.rb +++ b/railties/lib/rails/rack/debugger.rb @@ -12,7 +12,7 @@ module Rails ::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings) puts "=> Debugger enabled" rescue LoadError - puts "You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'" + puts "You need to install ruby-debug19 to run the server in debugging mode. With gems, use 'gem install ruby-debug19'" exit end |