class ActiveSupport::Notifications::Fanout

def publish(name, *args)

def publish(name, *args)
  listeners_for(name).each { |s| s.publish(name, *args) }
end