class Puma::Launcher

def run

Run the server. This blocks until the server is stopped
def run
  previous_env = get_env
  @config.clamp
  @config.plugins.fire_starts self
  setup_signals
  set_process_title
  # This blocks until the server is stopped
  @runner.run
  do_run_finished(previous_env)
end