diff options
author | needfeed <dev@needfeed.com> | 2012-09-10 12:36:49 -0700 |
---|---|---|
committer | needfeed <dev@needfeed.com> | 2012-09-10 12:36:49 -0700 |
commit | 844ea9c07e0291701215c061985652bfad097a23 (patch) | |
tree | 907f7af768db7357cee72c385fcf64b5d0f95f7a /railties/lib/rails/commands | |
parent | 416884c36d1eb2f0a607ba9a54dbe39773a92f6e (diff) | |
download | rails-844ea9c07e0291701215c061985652bfad097a23.tar.gz rails-844ea9c07e0291701215c061985652bfad097a23.tar.bz2 rails-844ea9c07e0291701215c061985652bfad097a23.zip |
Support MySQL SSL in rails dbconsole.
Diffstat (limited to 'railties/lib/rails/commands')
-rw-r--r-- | railties/lib/rails/commands/dbconsole.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/dbconsole.rb b/railties/lib/rails/commands/dbconsole.rb index cc0552184a..c84fa832f5 100644 --- a/railties/lib/rails/commands/dbconsole.rb +++ b/railties/lib/rails/commands/dbconsole.rb @@ -26,7 +26,12 @@ module Rails 'port' => '--port', 'socket' => '--socket', 'username' => '--user', - 'encoding' => '--default-character-set' + 'encoding' => '--default-character-set', + 'sslca' => '--ssl-ca', + 'sslcert' => '--ssl-cert', + 'sslcapath' => '--ssl-capath', + 'sslcipher' => '--ssh-cipher', + 'sslkey' => '--ssl-key' }.map { |opt, arg| "#{arg}=#{config[opt]}" if config[opt] }.compact if config['password'] && options['include_password'] |