class Puma::Events

def fire(hook, *args)

Fire callbacks for the named hook
def fire(hook, *args)
  @hooks[hook].each { |t| t.call(*args) }
end