ci.rake: code format cleanup

git-svn-id: http://svn.redmine.org/redmine/trunk@12266 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-11-10 22:59:10 +00:00
parent 8525e56c33
commit 81d6952587
1 changed files with 3 additions and 3 deletions

View File

@ -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,