From 81d69525879b0e39b91b46dd2a3bd46db5c3609d 2013-11-10 22:59:10 From: Toshi MARUYAMA Date: 2013-11-10 22:59:10 Subject: [PATCH] ci.rake: code format cleanup git-svn-id: http://svn.redmine.org/redmine/trunk@12266 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake index d30e9fb..89ac960 100644 --- a/lib/tasks/ci.rake +++ b/lib/tasks/ci.rake @@ -43,9 +43,9 @@ file 'config/database.yml' do case database when 'mysql' dev_conf = {'adapter' => (RUBY_VERSION >= '1.9' ? 'mysql2' : 'mysql'), - 'database' => dev_db_name, 'host' => 'localhost', - 'username' => 'jenkins', 'password' => 'jenkins', - 'encoding' => 'utf8'} + 'database' => dev_db_name, 'host' => 'localhost', + 'username' => 'jenkins', 'password' => 'jenkins', + 'encoding' => 'utf8'} test_conf = dev_conf.merge('database' => test_db_name) when 'postgresql' dev_conf = {'adapter' => 'postgresql', 'database' => dev_db_name,