diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2011-12-25 15:19:52 +0530 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2011-12-25 15:19:52 +0530 |
commit | 357837288f7d53440758377fe85aded557e3fb33 (patch) | |
tree | 795cf70805f1cc49dce642093d00817d37491cc7 | |
parent | 8eb359661745adc639d43cf7da9a92fc1f6c9539 (diff) | |
download | rails-357837288f7d53440758377fe85aded557e3fb33.tar.gz rails-357837288f7d53440758377fe85aded557e3fb33.tar.bz2 rails-357837288f7d53440758377fe85aded557e3fb33.zip |
gem ruby-debug19 for console error if ruby-debug19 not found
-rw-r--r-- | railties/lib/rails/commands/console.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/console.rb b/railties/lib/rails/commands/console.rb index 7733a8f116..3acac2a6f0 100644 --- a/railties/lib/rails/commands/console.rb +++ b/railties/lib/rails/commands/console.rb @@ -31,7 +31,7 @@ module Rails require 'ruby-debug' puts "=> Debugger enabled" rescue Exception - puts "You need to install ruby-debug to run the console in debugging mode. With gems, use 'gem install ruby-debug'" + puts "You need to install ruby-debug19 to run the console in debugging mode. With gems, use 'gem install ruby-debug19'" exit end end |