Sha256: e8bf0edfb9322926caf9c82cc469a8634dc082139c46915e9174435fbf6ddfca

Contents?: true

Size: 823 Bytes

Versions: 2

Compression:

Stored size: 823 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'
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.5.4 lib/thin.rb
thin-0.5.4-x86-mswin32-60 lib/thin.rb