class RSpec::Core::Reporter

def finish

Other tags:
    Private: -
def finish
  begin
    stop
    notify :start_dump,    Notifications::NullNotification
    notify :dump_pending,  Notifications::ExamplesNotification.new(self)
    notify :dump_failures, Notifications::ExamplesNotification.new(self)
    notify :deprecation_summary, Notifications::NullNotification
    notify :dump_summary, Notifications::SummaryNotification.new(@duration, @examples, @failed_examples, @pending_examples, @load_time)
    unless mute_profile_output?
      notify :dump_profile, Notifications::ProfileNotification.new(@duration, @examples, @configuration.profile_examples)
    end
    notify :seed, Notifications::SeedNotification.new(@configuration.seed, seed_used?)
  ensure
    notify :close, Notifications::NullNotification
  end
end