3
4
5
6
7
8
9
10
11
|
# File 'lib/scan/manager.rb', line 3
def work(options)
Scan.config = options
FastlaneCore::PrintTable.print_values(config: options,
hide_keys: [:destination, :slack_url],
title: "Summary for scan #{Scan::VERSION}")
return Runner.new.run
end
|