9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/tasks/thorfile.rb', line 9
def export
require 'config/environment'
opts = {}
report_path = options.output || Rails.root
unless report_path.to_s =~ /\.pdf\z/
date = DateTime.now.strftime('%Y-%m-%d')
base_filename = "dradis-report_#{date}.pdf"
report_filename = NamingService.name_file(
original_filename: base_filename,
pathname: Pathname.new(report_path)
)
report_path = File.join(report_path, report_filename)
end
detect_and_set_project_scope
exporter = Dradis::Plugins::PdfExport::Exporter.new(task_options)
pdf = exporter.export
File.open(report_path, 'wb') do |f|
f << pdf.render
end
logger.info{ "Report file created at:\n\t#{report_path}" }
end
|