Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/gitlab/audit_event_types/compile_docs_task.rb')
-rw-r--r--lib/tasks/gitlab/audit_event_types/compile_docs_task.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/tasks/gitlab/audit_event_types/compile_docs_task.rb b/lib/tasks/gitlab/audit_event_types/compile_docs_task.rb
new file mode 100644
index 00000000000..ffa4f6d3514
--- /dev/null
+++ b/lib/tasks/gitlab/audit_event_types/compile_docs_task.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+module Tasks
+ module Gitlab
+ module AuditEventTypes
+ class CompileDocsTask
+ def initialize(docs_dir, docs_path, template_erb_path)
+ @event_types_dir = docs_dir
+ @audit_event_types_doc_file = docs_path
+ @event_type_erb_template = ERB.new(File.read(template_erb_path), trim_mode: '<>')
+ end
+
+ def run
+ FileUtils.mkdir_p(@event_types_dir)
+ File.write(@audit_event_types_doc_file, @event_type_erb_template.result)
+
+ puts "Documentation compiled."
+ end
+ end
+ end
+ end
+end