Merge pull request #15712 from Homebrew/dependabot/bundler/Library/Homebrew/msgpack-1.7.2

build(deps): bump msgpack from 1.7.1 to 1.7.2 in /Library/Homebrew
This commit is contained in:
Mike McQuaid 2023-07-19 13:37:15 +01:00 committed by GitHub
commit 3b09b7e202
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 3 deletions

View File

@ -35,7 +35,7 @@ GEM
simpleidn (~> 0.2) simpleidn (~> 0.2)
method_source (1.0.0) method_source (1.0.0)
minitest (5.18.1) minitest (5.18.1)
msgpack (1.7.1) msgpack (1.7.2)
mustache (1.1.1) mustache (1.1.1)
parallel (1.23.0) parallel (1.23.0)
parallel_tests (3.13.0) parallel_tests (3.13.0)

View File

@ -91,6 +91,7 @@ class MessagePack::Factory
def load(src, param = T.unsafe(nil)); end def load(src, param = T.unsafe(nil)); end
def pack(v, *rest); end def pack(v, *rest); end
def pool(size = T.unsafe(nil), **options); end def pool(size = T.unsafe(nil), **options); end
def register_type(type, klass, options = T.unsafe(nil)); end
def registered_types(selector = T.unsafe(nil)); end def registered_types(selector = T.unsafe(nil)); end
def type_registered?(klass_or_type, selector = T.unsafe(nil)); end def type_registered?(klass_or_type, selector = T.unsafe(nil)); end
def unpack(src, param = T.unsafe(nil)); end def unpack(src, param = T.unsafe(nil)); end
@ -111,7 +112,10 @@ class MessagePack::Factory::Pool::MemberPool
def with; end def with; end
end end
class MessagePack::HeldBuffer < ::BasicObject; end
class MessagePack::Packer class MessagePack::Packer
def register_type(type, klass, method_name = T.unsafe(nil), &block); end
def registered_types; end def registered_types; end
def type_registered?(klass_or_type); end def type_registered?(klass_or_type); end
end end
@ -144,6 +148,7 @@ class MessagePack::UnexpectedTypeError < ::MessagePack::UnpackError
end end
class MessagePack::Unpacker class MessagePack::Unpacker
def register_type(type, klass = T.unsafe(nil), method_name = T.unsafe(nil), &block); end
def registered_types; end def registered_types; end
def type_registered?(klass_or_type); end def type_registered?(klass_or_type); end
end end

View File

@ -4709,6 +4709,8 @@ class Mechanize::HTTP
end end
class MessagePack::Packer class MessagePack::Packer
def register_type_internal(arg, arg1, arg2); end
def reset(); end def reset(); end
def write_bin(arg); end def write_bin(arg); end

View File

@ -33,8 +33,8 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.4/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.4/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ast-2.4.2/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ast-2.4.2/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/bindata-2.4.15/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/bindata-2.4.15/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/msgpack-1.7.1") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/msgpack-1.7.2")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/msgpack-1.7.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/msgpack-1.7.2/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/bootsnap-1.16.0") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/bootsnap-1.16.0")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/bootsnap-1.16.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/bootsnap-1.16.0/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/byebug-11.1.3") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/byebug-11.1.3")