summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authorHordur Freyr Yngvason <hfyngvason@gitlab.com>2019-08-14 23:16:55 +0000
committerStan Hu <stanhu@gmail.com>2019-08-14 23:16:55 +0000
commit37ffbeeab1f634449a149417679353724bbda5d6 (patch)
tree7fc68c631320ae17b13c936b25964e7a5090a498 /lib/tasks
parentc8dfb11b28e0292f2b89f65da12e7fc31aea5b48 (diff)
downloadgitlab-ce-37ffbeeab1f634449a149417679353724bbda5d6.tar.gz
Make ruby 2.6 the officially supported version
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/services.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/services.rake b/lib/tasks/services.rake
index 56b81106c5f..4ec4fdd281f 100644
--- a/lib/tasks/services.rake
+++ b/lib/tasks/services.rake
@@ -86,7 +86,7 @@ namespace :services do
doc_start = Time.now
doc_path = File.join(Rails.root, 'doc', 'api', 'services.md')
- result = ERB.new(services_template, 0, '>')
+ result = ERB.new(services_template, trim_mode: '>')
.result(OpenStruct.new(services: services).instance_eval { binding })
File.open(doc_path, 'w') do |f|