class RSpec::Core::Reporter

def notify(event, notification)

Experimental RBS support (using type sampling data from the type_fusion project).

def notify: (Symbol event, RSpec::Core::Notifications::GroupNotification notification) -> untyped

This signature was generated using 2 samples from 1 application.

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