module Unicorn
Unicorn
module containing all of the classes (include C extensions) for running a Unicorn
web server. It contains a minimalist server with just enough functionality to service application requests fast as possible.
Public Class Methods
run(options = {})
click to toggle source
# File lib/unicorn.rb, line 16 def run(options = {}) Server.new(options).start.join end