Sha256: 7fb86a1522e335130d34e55c95533c796467385f127a13e3c8b6abb842044470
Contents?: true
Size: 1.3 KB
Versions: 2
Compression:
Stored size: 1.3 KB
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 autoload :Command, 'thin/command' 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 :Runner, 'thin/runner' autoload :Server, 'thin/server' autoload :Stats, 'thin/stats' module Backends autoload :Base, 'thin/backends/base' autoload :SwiftiplyClient, 'thin/backends/swiftiply_client' autoload :TcpServer, 'thin/backends/tcp_server' autoload :UnixServer, 'thin/backends/unix_server' end module Controllers autoload :Cluster, 'thin/controllers/cluster' autoload :Controller, 'thin/controllers/controller' autoload :Service, 'thin/controllers/service' end 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
thin-0.7.1-x86-mswin32-60 | lib/thin.rb |
thin-0.7.1 | lib/thin.rb |