Runs the Padrino apps as a self-hosted server using: thin, mongrel, or WEBrick in that order.
Examples:
Padrino.run!# with these defaults => host: "127.0.0.1", port: "3000", adapter: the first found
Padrino.run!("0.0.0.0","4000","mongrel")# use => host: "0.0.0.0", port: "4000", adapter: "mongrel"
10
11
12
13
# File 'padrino-core/lib/padrino-core/server.rb', line 10defself.run!(options={})Padrino.load!Server.start(*detect_application(options))end