class Bundler::Audit::Report

def each_vulnerable_gem

Returns:
  • (Enumerator) -

Other tags:
    Yieldparam: -

Other tags:
    Yield: -
def each_vulnerable_gem
  return enum_for(__method__) unless block_given?
  @unpatched_gems.each { |result| yield result.gem }
end