4bf2e0d944
Remove the vendored sqlite3-ruby. Instead, add support for Bundler (which is vendored). Before running the new Instiki, do a ruby bundle which will install all of the needed gems locally. (If you need to, tweak the contents of Gemfile.)
85 lines
2.7 KiB
Ruby
85 lines
2.7 KiB
Ruby
# Copyright (C) 2007, 2008, 2009, 2010 Christian Neukirchen <purl.org/net/chneukirchen>
|
|
#
|
|
# Rack is freely distributable under the terms of an MIT-style license.
|
|
# See COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
# The Rack main module, serving as a namespace for all core Rack
|
|
# modules and classes.
|
|
#
|
|
# All modules meant for use in your application are <tt>autoload</tt>ed here,
|
|
# so it should be enough just to <tt>require rack.rb</tt> in your code.
|
|
|
|
module Rack
|
|
# The Rack protocol version number implemented.
|
|
VERSION = [1,1]
|
|
|
|
# Return the Rack protocol version as a dotted string.
|
|
def self.version
|
|
VERSION.join(".")
|
|
end
|
|
|
|
# Return the Rack release as a dotted string.
|
|
def self.release
|
|
"1.2.1"
|
|
end
|
|
|
|
autoload :Builder, "rack/builder"
|
|
autoload :Cascade, "rack/cascade"
|
|
autoload :Chunked, "rack/chunked"
|
|
autoload :CommonLogger, "rack/commonlogger"
|
|
autoload :ConditionalGet, "rack/conditionalget"
|
|
autoload :Config, "rack/config"
|
|
require "rack/content_length"
|
|
# autoload :ContentLength, "rack/content_length"
|
|
autoload :ContentType, "rack/content_type"
|
|
autoload :ETag, "rack/etag"
|
|
autoload :File, "rack/file"
|
|
autoload :Deflater, "rack/deflater"
|
|
autoload :Directory, "rack/directory"
|
|
autoload :ForwardRequest, "rack/recursive"
|
|
require "rack/handler"
|
|
# autoload :Handler, "rack/handler"
|
|
autoload :Head, "rack/head"
|
|
autoload :Lint, "rack/lint"
|
|
autoload :Lock, "rack/lock"
|
|
autoload :Logger, "rack/logger"
|
|
autoload :MethodOverride, "rack/methodoverride"
|
|
autoload :Mime, "rack/mime"
|
|
autoload :NullLogger, "rack/nulllogger"
|
|
autoload :Recursive, "rack/recursive"
|
|
autoload :Reloader, "rack/reloader"
|
|
autoload :Runtime, "rack/runtime"
|
|
autoload :Sendfile, "rack/sendfile"
|
|
autoload :Server, "rack/server"
|
|
autoload :ShowExceptions, "rack/showexceptions"
|
|
autoload :ShowStatus, "rack/showstatus"
|
|
autoload :Static, "rack/static"
|
|
autoload :URLMap, "rack/urlmap"
|
|
require "rack/utils"
|
|
# autoload :Utils, "rack/utils"
|
|
|
|
autoload :MockRequest, "rack/mock"
|
|
autoload :MockResponse, "rack/mock"
|
|
|
|
autoload :Request, "rack/request"
|
|
autoload :Response, "rack/response"
|
|
|
|
module Auth
|
|
autoload :Basic, "rack/auth/basic"
|
|
autoload :AbstractRequest, "rack/auth/abstract/request"
|
|
autoload :AbstractHandler, "rack/auth/abstract/handler"
|
|
module Digest
|
|
autoload :MD5, "rack/auth/digest/md5"
|
|
autoload :Nonce, "rack/auth/digest/nonce"
|
|
autoload :Params, "rack/auth/digest/params"
|
|
autoload :Request, "rack/auth/digest/request"
|
|
end
|
|
end
|
|
|
|
module Session
|
|
autoload :Cookie, "rack/session/cookie"
|
|
autoload :Pool, "rack/session/pool"
|
|
autoload :Memcache, "rack/session/memcache"
|
|
end
|
|
end
|