Sha256: 8c0ff9712050873582d277bc11f912c2efd5f73ac179cd804739e31269d4d783
Contents?: true
Size: 862 Bytes
Versions: 4
Compression:
Stored size: 862 Bytes
Contents
$:.unshift File.expand_path(File.dirname(__FILE__)) require 'fileutils' require 'timeout' require 'stringio' require 'rubygems' require 'eventmachine' require 'thin/version' require 'thin/statuses' module Thin NAME = 'thin'.freeze SERVER = "#{NAME} #{VERSION::STRING} codename #{VERSION::CODENAME}".freeze autoload :Cluster, 'thin/cluster' autoload :Connection, 'thin/connection' autoload :Daemonizable, 'thin/daemonizing' autoload :Logging, 'thin/logging' autoload :Headers, 'thin/headers' autoload :Request, 'thin/request' autoload :Response, 'thin/response' autoload :Server, 'thin/server' autoload :Stats, 'thin/stats' end require 'rack' module Rack module Handler autoload :Thin, 'rack/handler/thin' end module Adapter autoload :Rails, 'rack/adapter/rails' end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
thin-0.6.0-x86-mswin32-60 | lib/thin.rb |
thin-0.6.1 | lib/thin.rb |
thin-0.6.0 | lib/thin.rb |
thin-0.6.1-x86-mswin32-60 | lib/thin.rb |