module Padrino
def self.run!(options={})
Padrino.run!("0.0.0.0", "4000", "mongrel") # use => host: "0.0.0.0", port: "4000", adapter: "mongrel"
Padrino.run! # with these defaults => host: "127.0.0.1", port: "3000", adapter: the first found
@example
thin, mongrel, or webrick in that order.
Runs the Padrino apps as a self-hosted server using:
#
def self.run!(options={}) Padrino.load! Server.start(Padrino.application, options) end