Sha256: 18d4c7c349c55e1edcdf23401c22dd4f10c169e29ab2cb9c9e2ffafe80e941e9

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 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 Connectors
    autoload :Connector,  'thin/connectors/connector'
    autoload :TcpServer,  'thin/connectors/tcp_server'
    autoload :UnixServer, 'thin/connectors/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

4 entries across 4 versions & 1 rubygems

Version Path
thin-0.6.4-x86-mswin32-60 lib/thin.rb
thin-0.6.4 lib/thin.rb
thin-0.6.3 lib/thin.rb
thin-0.6.3-x86-mswin32-60 lib/thin.rb