summaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-11-10 22:59:10 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-11-10 22:59:10 +0000
commit81d69525879b0e39b91b46dd2a3bd46db5c3609d (patch)
treec19172cb22915516fd878152b975f130f05267c8 /lib/tasks
parent8525e56c339072ee116c956fcc7d8365f58560a8 (diff)
downloadredmine-81d69525879b0e39b91b46dd2a3bd46db5c3609d.tar.gz
redmine-81d69525879b0e39b91b46dd2a3bd46db5c3609d.zip
ci.rake: code format cleanup
git-svn-id: http://svn.redmine.org/redmine/trunk@12266 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/ci.rake6
1 files 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,