method

publish_event

publish_event(event)
public

No documentation available.

# File activesupport/lib/active_support/subscriber.rb, line 141
    def publish_event(event) # :nodoc:
      method = event.name[0, event.name.index(".")]
      send(method, event)
    end