提交 e61ac6fe 编写于 作者: J Justin Collins

Output JSON if terminal-table is not available

上级 f72cf6ce
......@@ -145,7 +145,12 @@ module Brakeman
elsif options[:output_files]
get_formats_from_output_files options[:output_files]
else
return [:to_s]
begin
require 'terminal-table'
return [:to_s]
rescue LoadError
return [:to_json]
end
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册