Merge pull request #12739 from Homebrew/dependabot/bundler/Library/Homebrew/bootsnap-1.10.1

build(deps): bump bootsnap from 1.9.4 to 1.10.1 in /Library/Homebrew
This commit is contained in:
Nanda H Krishna 2022-01-17 14:26:32 -05:00 committed by GitHub
commit 36a3b24185
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 11 deletions

View File

@ -11,8 +11,8 @@ GEM
public_suffix (>= 2.0.2, < 5.0)
ast (2.4.2)
bindata (2.4.10)
bootsnap (1.9.4)
msgpack (~> 1.0)
bootsnap (1.10.1)
msgpack (~> 1.2)
byebug (11.1.3)
coderay (1.1.3)
commander (4.6.0)

View File

@ -32,6 +32,7 @@ end
class Bootsnap::CompileCache::Error < ::StandardError; end
class Bootsnap::CompileCache::PermissionError < ::Bootsnap::CompileCache::Error; end
Bootsnap::CompileCache::UNCOMPILABLE = T.let(T.unsafe(nil), BasicObject)
module Bootsnap::ExplicitRequire
class << self
@ -72,13 +73,13 @@ class Bootsnap::LoadPathCache::Cache
def dir_changed?; end
def expand_path(feature); end
def maybe_append_extension(f); end
def maybe_append_extension(feature); end
def now; end
def push_paths_locked(*paths); end
def search_index(f, try_extensions: T.unsafe(nil)); end
def search_index(feature, try_extensions: T.unsafe(nil)); end
def stale?; end
def try_ext(f); end
def try_index(f); end
def try_ext(feature); end
def try_index(feature); end
def unshift_paths_locked(*paths); end
end
@ -134,15 +135,17 @@ class Bootsnap::LoadPathCache::FallbackScan < ::StandardError; end
class Bootsnap::LoadPathCache::LoadedFeaturesIndex
def initialize; end
def cursor(short); end
def identify(short, cursor); end
def key?(feature); end
def purge(feature); end
def purge_multi(features); end
def register(short, long = T.unsafe(nil)); end
def register(short, long); end
private
def extension_elidable?(f); end
def strip_extension_if_elidable(f); end
def extension_elidable?(feature); end
def strip_extension_if_elidable(feature); end
end
Bootsnap::LoadPathCache::LoadedFeaturesIndex::STRIP_EXTENSION = T.let(T.unsafe(nil), Regexp)

View File

@ -15,8 +15,8 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/bindata-2.4.10/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/msgpack-1.4.2"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/msgpack-1.4.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/bootsnap-1.9.4"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/bootsnap-1.9.4/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/bootsnap-1.10.1"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/bootsnap-1.10.1/lib"
$:.unshift "#{path}/"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/byebug-11.1.3"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/byebug-11.1.3/lib"