diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2012-05-21 23:04:24 -0700 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2012-05-21 23:04:24 -0700 |
commit | d22859ed9712cfa27b83225d8363d0f92261335a (patch) | |
tree | 66d95d8ac395ce244ab103e6e77bb2fa10efd087 /railties/lib/rails/commands/dbconsole.rb | |
parent | 1447aca70f231f07eedee9572bd45da6a175262b (diff) | |
parent | 1fed1f14fc0ecb375d8a7c542669dad96541582d (diff) | |
download | rails-d22859ed9712cfa27b83225d8363d0f92261335a.tar.gz rails-d22859ed9712cfa27b83225d8363d0f92261335a.tar.bz2 rails-d22859ed9712cfa27b83225d8363d0f92261335a.zip |
Merge pull request #6150 from avakhov/dbconsole-fixes
Rails db console improvements
Diffstat (limited to 'railties/lib/rails/commands/dbconsole.rb')
-rw-r--r-- | railties/lib/rails/commands/dbconsole.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/railties/lib/rails/commands/dbconsole.rb b/railties/lib/rails/commands/dbconsole.rb index aaba47117f..cc7caffc3d 100644 --- a/railties/lib/rails/commands/dbconsole.rb +++ b/railties/lib/rails/commands/dbconsole.rb @@ -42,7 +42,7 @@ module Rails include_password = false options = {} OptionParser.new do |opt| - opt.banner = "Usage: dbconsole [environment] [options]" + opt.banner = "Usage: rails dbconsole [environment] [options]" opt.on("-p", "--include-password", "Automatically provide the password from database.yml") do |v| include_password = true end @@ -56,6 +56,11 @@ module Rails options['header'] = h end + opt.on("-h", "--help", "Show this help message.") do + puts opt + exit + end + opt.parse!(arguments) abort opt.to_s unless (0..1).include?(arguments.size) end @@ -96,7 +101,7 @@ module Rails args << "-#{options['mode']}" if options['mode'] args << "-header" if options['header'] - args << config['database'] + args << File.expand_path(config['database'], Rails.root) find_cmd_and_exec('sqlite3', *args) |