Registry / web-framework / rack
library3.2.6rbrubygemsunverified

Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby by wrapping HTTP requests and responses.

gem install rack
INSTALL
IMPORT
SIG · RACK
R
rack
web-frameworkrubyv3.2.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Rack
require 'rack'

Minimal Rack application

require 'rack' app = lambda { |env| [200, {'Content-Type' => 'text/plain'}, ['Hello']] } Rack::Handler::WEBrick.run app
Debug
Known issues
breakingRack 3.x removed support for Ruby < 2.5 and changed some default headers
fix
Use Rack 2.x for older Ruby versions or update your code for 3.x changes
affects: >= 3.0.0
Upgrade
Version history
3.2.6latest on RubyGems
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
Amazon
2
Resources
rack — gem install rack · libregistry