Class: Rack::Handler::Thin

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/handler/thin.rb

Class Method Summary collapse

Class Method Details

.run(app, **options) {|server| ... } ⇒ Object

Yields:

  • (server)


11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/rack/handler/thin.rb', line 11

def self.run(app, **options)
  environment  = ENV['RACK_ENV'] || 'development'
  default_host = environment == 'development' ? 'localhost' : '0.0.0.0'

  host = options.delete(:Host) || default_host
  port = options.delete(:Port) || 8080
  args = [host, port, app, options]

  server = ::Thin::Server.new(*args)
  yield server if block_given?

  server.start
end

.valid_optionsObject



25
26
27
28
29
30
31
32
33
# File 'lib/rack/handler/thin.rb', line 25

def self.valid_options
  environment  = ENV['RACK_ENV'] || 'development'
  default_host = environment == 'development' ? 'localhost' : '0.0.0.0'

  {
    "Host=HOST" => "Hostname to listen on (default: #{default_host})",
    "Port=PORT" => "Port to listen on (default: 8080)",
  }
end