module Capybara

def run_default_server(app, port)

Parameters:
  • port (Integer) -- The port to run the application on
  • app (Rack Application) -- The rack application to run
def run_default_server(app, port)
  servers[:puma].call(app, port, server_host)
end