module Bacon::FilterBacktraces

Public Instance Methods

handle_summary() click to toggle source
Calls superclass method
# File lib/pretty_bacon.rb, line 33
def handle_summary
  ErrorLog.replace(ErrorLog.split("\n").reject do |line|
    line =~ %r{(gems/mocha|ruby_noexec_wrapper|pretty_bacon)}
  end.join("\n").lstrip << "\n\n")
  super
end