diff options
author | Aditya Sanghi <asanghi@me.com> | 2012-04-24 21:56:41 -0500 |
---|---|---|
committer | Aditya Sanghi <asanghi@me.com> | 2012-04-24 21:56:41 -0500 |
commit | d6c831c198baee2542a070c62f1608f88fe60e34 (patch) | |
tree | bc34bac025f2c07688c79f666656d0ffc6ba8766 /railties/lib/rails/commands/console.rb | |
parent | 67ede880550836ce9f66164c56c8afeb397a54da (diff) | |
download | rails-d6c831c198baee2542a070c62f1608f88fe60e34.tar.gz rails-d6c831c198baee2542a070c62f1608f88fe60e34.tar.bz2 rails-d6c831c198baee2542a070c62f1608f88fe60e34.zip |
and one more time
Diffstat (limited to 'railties/lib/rails/commands/console.rb')
-rw-r--r-- | railties/lib/rails/commands/console.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/commands/console.rb b/railties/lib/rails/commands/console.rb index 4213be94d1..cd6a03fe51 100644 --- a/railties/lib/rails/commands/console.rb +++ b/railties/lib/rails/commands/console.rb @@ -27,7 +27,7 @@ module Rails opt.on("-e", "--environment=name", String, "Specifies the environment to run this console under (test/development/production).", "Default: development") { |v| options[:environment] = v.strip } - opt.on("--debugger", 'Enable ruby debugging for the console.') { |v| options[:debugger] = v } + opt.on("--debugger", 'Enable the debugger.') { |v| options[:debugger] = v } opt.parse!(arguments) end @@ -76,7 +76,7 @@ module Rails require 'debugger' puts "=> Debugger enabled" rescue Exception - puts "You need to install a debugger to run the console in debugging mode. With gems, use 'gem install debugger'" + puts "You're missing the 'debugger' gem. Add it to your Gemfile, bundle, and try again." exit end end |