Sha256: e4cc2f7a797291b15d6c8e668416f59577d963c4c264eedc89afabbaa7f4460e
Contents?: true
Size: 594 Bytes
Versions: 178
Compression:
Stored size: 594 Bytes
Contents
require "thin" require "rack/content_length" require "rack/chunked" module Rack module Handler class Thin def self.run(app, options={}) server = ::Thin::Server.new(options[:Host] || '0.0.0.0', options[:Port] || 8080, app) yield server if block_given? server.start end def self.valid_options { "Host=HOST" => "Hostname to listen on (default: localhost)", "Port=PORT" => "Port to listen on (default: 8080)", } end end end end
Version data entries
178 entries across 152 versions & 26 rubygems