class RSpec::Core::Reporter

def notify(event, notification)

Other tags:
    Private: -
def notify(event, notification)
  ensure_listeners_ready
  registered_listeners(event).each do |formatter|
    formatter.__send__(event, notification)
  end
end