1.
Class: Rack::Builder
Rack::Builder implements a small DSL to iteratively construct Rack ... File lib/rack/builder.rb, line 63 63: def call(env) 64: to_app.call(env) 65: end ...
2.
Class: Rack::File
Rack::File serves files below the root given, according to the path info of ... File lib/rack/file.rb, line 25 25: def _call(env) 26: return forbidden if ...
3.
Rack: a Ruby Webserver Interface
Rack: a Ruby Webserver Interface. Rack powers web applications. Rack provides an minimal interface between webservers supporting Ruby and Ruby frameworks. ...
4.
Rack: a Ruby Webserver Interface
Provides an minimal interface between webservers supporting Ruby and several of its frameworks.
5.
Class: Rack::Session::Cookie
Rack::Session::Cookie provides simple cookie based session management. The session is a Ruby Hash stored as base64 encoded marshalled data set to :key ...
6.
Class: Rack::Builder
File lib/rack/builder.rb, line 48 48: def map(path, &block) 49: if @ins.last.kind_of? Hash 50: @ins.last[path] = self.class.new(&block).to_app 51: else 52: ...
7.
Class: Rack::Lobster
Class, Rack::Lobster. In: lib/rack/lobster.rb. Parent: Object. Paste has a Pony, Rack has a Lobster! Constants ...
8.
Rack Documentation
lib/rack/conditionalget.rb · lib/rack/content_length.rb .... it unifies and distills the API for web servers, web frameworks, and software in between (the ...
9.
Class: Rack::ShowStatus
Additional details can be put into rack.showstatus.detail and will be shown as HTML. If such details exist, the error page is always rendered, ...
10.
Class: Rack::Builder
app = Rack::Builder.new { use Rack::CommonLogger use Rack::ShowExceptions map "/lobster" do use Rack::Lint run Rack::Lobster.new end } ...