Update RBI files for rack.

Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow.
This commit is contained in:
BrewTestBot 2023-03-03 19:12:26 +00:00
parent 873fbd3759
commit 5fc23e3066
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F

View File

@ -693,6 +693,7 @@ Rack::Multipart::MULTIPART_CONTENT_DISPOSITION = T.let(T.unsafe(nil), Regexp)
Rack::Multipart::MULTIPART_CONTENT_ID = T.let(T.unsafe(nil), Regexp) Rack::Multipart::MULTIPART_CONTENT_ID = T.let(T.unsafe(nil), Regexp)
Rack::Multipart::MULTIPART_CONTENT_TYPE = T.let(T.unsafe(nil), Regexp) Rack::Multipart::MULTIPART_CONTENT_TYPE = T.let(T.unsafe(nil), Regexp)
class Rack::Multipart::MultipartPartLimitError < ::Errno::EMFILE; end class Rack::Multipart::MultipartPartLimitError < ::Errno::EMFILE; end
class Rack::Multipart::MultipartTotalPartLimitError < ::StandardError; end
class Rack::Multipart::Parser class Rack::Multipart::Parser
def initialize(boundary, tempfile, bufsize, query_parser); end def initialize(boundary, tempfile, bufsize, query_parser); end
@ -742,7 +743,7 @@ class Rack::Multipart::Parser::Collector
private private
def check_open_files; end def check_part_limits; end
end end
class Rack::Multipart::Parser::Collector::BufferPart < ::Rack::Multipart::Parser::Collector::MimePart class Rack::Multipart::Parser::Collector::BufferPart < ::Rack::Multipart::Parser::Collector::MimePart
@ -1331,8 +1332,12 @@ module Rack::Utils
def key_space_limit; end def key_space_limit; end
def key_space_limit=(v); end def key_space_limit=(v); end
def make_delete_cookie_header(header, key, value); end def make_delete_cookie_header(header, key, value); end
def multipart_file_limit; end
def multipart_file_limit=(_arg0); end
def multipart_part_limit; end def multipart_part_limit; end
def multipart_part_limit=(_arg0); end def multipart_part_limit=(_arg0); end
def multipart_total_part_limit; end
def multipart_total_part_limit=(_arg0); end
def param_depth_limit; end def param_depth_limit; end
def param_depth_limit=(v); end def param_depth_limit=(v); end
def parse_cookies(env); end def parse_cookies(env); end