Merge pull request #15548 from Homebrew/dependabot/bundler/Library/Homebrew/rack-3.0.8

This commit is contained in:
Nanda H Krishna 2023-06-14 20:17:42 -04:00 committed by GitHub
commit ab20a6e0f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
59 changed files with 4 additions and 8 deletions

View File

@ -57,7 +57,7 @@ GEM
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (5.0.1)
rack (3.0.7)
rack (3.0.8)
rainbow (3.1.1)
rbi (0.0.14)
ast

View File

@ -938,11 +938,7 @@ class Rack::Request
def delete_param(k); end
def params; end
def query; end
def update_param(k, v); end
def version_supplied; end
def version_supplied=(_arg0); end
def xhr?; end
class << self
def forwarded_priority; end

View File

@ -66,7 +66,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/patchelf-1.4.0/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/plist-3.7.0/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/pry-0.14.2/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rack-3.0.7/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rack-3.0.8/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unparser-0.6.4/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rbi-0.0.14/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/rdiscount-2.2.7")

View File

@ -111,7 +111,7 @@ module Rack
end
def call(env)
status, headers, body = response = @app.call(env)
_, headers, body = response = @app.call(env)
if body.respond_to?(:to_path)
case type = variation(env)

View File

@ -25,7 +25,7 @@ module Rack
VERSION
end
RELEASE = "3.0.7"
RELEASE = "3.0.8"
# Return the Rack release as a dotted string.
def self.release