Method: Glue::OWASPDependencyCheck#analyze
- Defined in:
- lib/glue/tasks/owasp-dep-check.rb
#analyze ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/glue/tasks/owasp-dep-check.rb', line 90 def analyze path = @trigger.path + "/dependency-check-report.xml" begin Glue.debug "Parsing report #{path}" get_warnings(path) rescue Exception => e Glue.notify "Problem running OWASP Dep Check ... skipped." Glue.notify e. raise e end end |