🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 00:28:36 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
ruby27
/
share
/
gems
/
gems
/
rack-3.0.8
/
lib
/
rack
📍 /opt/alt/ruby27/share/gems/gems/rack-3.0.8/lib/rack
🔄 Refresh
✏️
Editing: config.rb
Read Only
# frozen_string_literal: true module Rack # Rack::Config modifies the environment using the block given during # initialization. # # Example: # use Rack::Config do |env| # env['my-key'] = 'some-value' # end class Config def initialize(app, &block) @app = app @block = block end def call(env) @block.call(env) @app.call(env) end end end
💾 Save Changes
❌ Cancel