From 81d69525879b0e39b91b46dd2a3bd46db5c3609d Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sun, 10 Nov 2013 22:59:10 +0000 Subject: [PATCH] ci.rake: code format cleanup git-svn-id: http://svn.redmine.org/redmine/trunk@12266 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/tasks/ci.rake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake index d30e9fb0a..89ac960ba 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,