Method: Thin::Server.start
- Defined in:
- lib/thin/server.rb
.start(*args, &block) ⇒ Object
Lil’ shortcut to turn this:
Server.new(...).start
into this:
Server.start(...)
135 136 137 |
# File 'lib/thin/server.rb', line 135 def self.start(*args, &block) new(*args, &block).start! end |