bootsnap 1.6.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +174 -0
 - data/LICENSE.txt +1 -1
 - data/README.md +41 -18
 - data/exe/bootsnap +1 -1
 - data/ext/bootsnap/bootsnap.c +133 -105
 - data/ext/bootsnap/extconf.rb +21 -14
 - data/lib/bootsnap/bundler.rb +1 -0
 - data/lib/bootsnap/cli/worker_pool.rb +6 -1
 - data/lib/bootsnap/cli.rb +84 -49
 - data/lib/bootsnap/compile_cache/iseq.rb +43 -13
 - data/lib/bootsnap/compile_cache/json.rb +93 -0
 - data/lib/bootsnap/compile_cache/yaml.rb +299 -61
 - data/lib/bootsnap/compile_cache.rb +24 -7
 - data/lib/bootsnap/explicit_require.rb +4 -3
 - data/lib/bootsnap/load_path_cache/cache.rb +63 -35
 - data/lib/bootsnap/load_path_cache/change_observer.rb +17 -2
 - data/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb +27 -95
 - data/lib/bootsnap/load_path_cache/core_ext/loaded_features.rb +1 -0
 - data/lib/bootsnap/load_path_cache/loaded_features_index.rb +36 -25
 - data/lib/bootsnap/load_path_cache/path.rb +39 -17
 - data/lib/bootsnap/load_path_cache/path_scanner.rb +25 -7
 - data/lib/bootsnap/load_path_cache/store.rb +64 -24
 - data/lib/bootsnap/load_path_cache.rb +31 -38
 - data/lib/bootsnap/setup.rb +2 -36
 - data/lib/bootsnap/version.rb +2 -1
 - data/lib/bootsnap.rb +125 -36
 - metadata +8 -79
 - data/lib/bootsnap/load_path_cache/core_ext/active_support.rb +0 -107
 - data/lib/bootsnap/load_path_cache/realpath_cache.rb +0 -32
 
    
        metadata
    CHANGED
    
    | 
         @@ -1,99 +1,29 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: bootsnap
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.15.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Burke Libbey
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2022-11-25 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
     | 
    
         
            -
              name: bundler
         
     | 
| 
       15 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       16 
     | 
    
         
            -
                requirements:
         
     | 
| 
       17 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       18 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version: '0'
         
     | 
| 
       20 
     | 
    
         
            -
              type: :development
         
     | 
| 
       21 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       22 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
     | 
    
         
            -
                requirements:
         
     | 
| 
       24 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       25 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
     | 
    
         
            -
                    version: '0'
         
     | 
| 
       27 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
     | 
    
         
            -
              name: rake
         
     | 
| 
       29 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
     | 
    
         
            -
                requirements:
         
     | 
| 
       31 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       32 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
     | 
    
         
            -
                    version: '0'
         
     | 
| 
       34 
     | 
    
         
            -
              type: :development
         
     | 
| 
       35 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       36 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
     | 
    
         
            -
                requirements:
         
     | 
| 
       38 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       39 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
     | 
    
         
            -
                    version: '0'
         
     | 
| 
       41 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       42 
     | 
    
         
            -
              name: rake-compiler
         
     | 
| 
       43 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       44 
     | 
    
         
            -
                requirements:
         
     | 
| 
       45 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       46 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       47 
     | 
    
         
            -
                    version: '0'
         
     | 
| 
       48 
     | 
    
         
            -
              type: :development
         
     | 
| 
       49 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       50 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       51 
     | 
    
         
            -
                requirements:
         
     | 
| 
       52 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       53 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       54 
     | 
    
         
            -
                    version: '0'
         
     | 
| 
       55 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       56 
     | 
    
         
            -
              name: minitest
         
     | 
| 
       57 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       58 
     | 
    
         
            -
                requirements:
         
     | 
| 
       59 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       60 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       61 
     | 
    
         
            -
                    version: '5.0'
         
     | 
| 
       62 
     | 
    
         
            -
              type: :development
         
     | 
| 
       63 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       64 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       65 
     | 
    
         
            -
                requirements:
         
     | 
| 
       66 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       67 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       68 
     | 
    
         
            -
                    version: '5.0'
         
     | 
| 
       69 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       70 
     | 
    
         
            -
              name: mocha
         
     | 
| 
       71 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       72 
     | 
    
         
            -
                requirements:
         
     | 
| 
       73 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       74 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       75 
     | 
    
         
            -
                    version: '1.2'
         
     | 
| 
       76 
     | 
    
         
            -
              type: :development
         
     | 
| 
       77 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       78 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       79 
     | 
    
         
            -
                requirements:
         
     | 
| 
       80 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       81 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       82 
     | 
    
         
            -
                    version: '1.2'
         
     | 
| 
       83 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       84 
14 
     | 
    
         
             
              name: msgpack
         
     | 
| 
       85 
15 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       86 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       87 
17 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       88 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       89 
     | 
    
         
            -
                    version: '1. 
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '1.2'
         
     | 
| 
       90 
20 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       91 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       92 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       93 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       94 
24 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       95 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       96 
     | 
    
         
            -
                    version: '1. 
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '1.2'
         
     | 
| 
       97 
27 
     | 
    
         
             
            description: Boot large ruby/rails apps faster
         
     | 
| 
       98 
28 
     | 
    
         
             
            email:
         
     | 
| 
       99 
29 
     | 
    
         
             
            - burke.libbey@shopify.com
         
     | 
| 
         @@ -116,18 +46,17 @@ files: 
     | 
|
| 
       116 
46 
     | 
    
         
             
            - lib/bootsnap/cli/worker_pool.rb
         
     | 
| 
       117 
47 
     | 
    
         
             
            - lib/bootsnap/compile_cache.rb
         
     | 
| 
       118 
48 
     | 
    
         
             
            - lib/bootsnap/compile_cache/iseq.rb
         
     | 
| 
      
 49 
     | 
    
         
            +
            - lib/bootsnap/compile_cache/json.rb
         
     | 
| 
       119 
50 
     | 
    
         
             
            - lib/bootsnap/compile_cache/yaml.rb
         
     | 
| 
       120 
51 
     | 
    
         
             
            - lib/bootsnap/explicit_require.rb
         
     | 
| 
       121 
52 
     | 
    
         
             
            - lib/bootsnap/load_path_cache.rb
         
     | 
| 
       122 
53 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/cache.rb
         
     | 
| 
       123 
54 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/change_observer.rb
         
     | 
| 
       124 
     | 
    
         
            -
            - lib/bootsnap/load_path_cache/core_ext/active_support.rb
         
     | 
| 
       125 
55 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/core_ext/kernel_require.rb
         
     | 
| 
       126 
56 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/core_ext/loaded_features.rb
         
     | 
| 
       127 
57 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/loaded_features_index.rb
         
     | 
| 
       128 
58 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/path.rb
         
     | 
| 
       129 
59 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/path_scanner.rb
         
     | 
| 
       130 
     | 
    
         
            -
            - lib/bootsnap/load_path_cache/realpath_cache.rb
         
     | 
| 
       131 
60 
     | 
    
         
             
            - lib/bootsnap/load_path_cache/store.rb
         
     | 
| 
       132 
61 
     | 
    
         
             
            - lib/bootsnap/setup.rb
         
     | 
| 
       133 
62 
     | 
    
         
             
            - lib/bootsnap/version.rb
         
     | 
| 
         @@ -136,7 +65,7 @@ licenses: 
     | 
|
| 
       136 
65 
     | 
    
         
             
            - MIT
         
     | 
| 
       137 
66 
     | 
    
         
             
            metadata:
         
     | 
| 
       138 
67 
     | 
    
         
             
              bug_tracker_uri: https://github.com/Shopify/bootsnap/issues
         
     | 
| 
       139 
     | 
    
         
            -
              changelog_uri: https://github.com/Shopify/bootsnap/blob/ 
     | 
| 
      
 68 
     | 
    
         
            +
              changelog_uri: https://github.com/Shopify/bootsnap/blob/main/CHANGELOG.md
         
     | 
| 
       140 
69 
     | 
    
         
             
              source_code_uri: https://github.com/Shopify/bootsnap
         
     | 
| 
       141 
70 
     | 
    
         
             
              allowed_push_host: https://rubygems.org
         
     | 
| 
       142 
71 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
         @@ -147,14 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       147 
76 
     | 
    
         
             
              requirements:
         
     | 
| 
       148 
77 
     | 
    
         
             
              - - ">="
         
     | 
| 
       149 
78 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       150 
     | 
    
         
            -
                  version: 2. 
     | 
| 
      
 79 
     | 
    
         
            +
                  version: 2.6.0
         
     | 
| 
       151 
80 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       152 
81 
     | 
    
         
             
              requirements:
         
     | 
| 
       153 
82 
     | 
    
         
             
              - - ">="
         
     | 
| 
       154 
83 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       155 
84 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       156 
85 
     | 
    
         
             
            requirements: []
         
     | 
| 
       157 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
      
 86 
     | 
    
         
            +
            rubygems_version: 3.3.3
         
     | 
| 
       158 
87 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       159 
88 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       160 
89 
     | 
    
         
             
            summary: Boot large ruby/rails apps faster
         
     | 
| 
         @@ -1,107 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # frozen_string_literal: true
         
     | 
| 
       2 
     | 
    
         
            -
            module Bootsnap
         
     | 
| 
       3 
     | 
    
         
            -
              module LoadPathCache
         
     | 
| 
       4 
     | 
    
         
            -
                module CoreExt
         
     | 
| 
       5 
     | 
    
         
            -
                  module ActiveSupport
         
     | 
| 
       6 
     | 
    
         
            -
                    def self.without_bootsnap_cache
         
     | 
| 
       7 
     | 
    
         
            -
                      prev = Thread.current[:without_bootsnap_cache] || false
         
     | 
| 
       8 
     | 
    
         
            -
                      Thread.current[:without_bootsnap_cache] = true
         
     | 
| 
       9 
     | 
    
         
            -
                      yield
         
     | 
| 
       10 
     | 
    
         
            -
                    ensure
         
     | 
| 
       11 
     | 
    
         
            -
                      Thread.current[:without_bootsnap_cache] = prev
         
     | 
| 
       12 
     | 
    
         
            -
                    end
         
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
                    def self.allow_bootsnap_retry(allowed)
         
     | 
| 
       15 
     | 
    
         
            -
                      prev = Thread.current[:without_bootsnap_retry] || false
         
     | 
| 
       16 
     | 
    
         
            -
                      Thread.current[:without_bootsnap_retry] = !allowed
         
     | 
| 
       17 
     | 
    
         
            -
                      yield
         
     | 
| 
       18 
     | 
    
         
            -
                    ensure
         
     | 
| 
       19 
     | 
    
         
            -
                      Thread.current[:without_bootsnap_retry] = prev
         
     | 
| 
       20 
     | 
    
         
            -
                    end
         
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
                    module ClassMethods
         
     | 
| 
       23 
     | 
    
         
            -
                      def autoload_paths=(o)
         
     | 
| 
       24 
     | 
    
         
            -
                        super
         
     | 
| 
       25 
     | 
    
         
            -
                        Bootsnap::LoadPathCache.autoload_paths_cache.reinitialize(o)
         
     | 
| 
       26 
     | 
    
         
            -
                      end
         
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
                      def search_for_file(path)
         
     | 
| 
       29 
     | 
    
         
            -
                        return super if Thread.current[:without_bootsnap_cache]
         
     | 
| 
       30 
     | 
    
         
            -
                        begin
         
     | 
| 
       31 
     | 
    
         
            -
                          Bootsnap::LoadPathCache.autoload_paths_cache.find(path)
         
     | 
| 
       32 
     | 
    
         
            -
                        rescue Bootsnap::LoadPathCache::ReturnFalse
         
     | 
| 
       33 
     | 
    
         
            -
                          nil # doesn't really apply here
         
     | 
| 
       34 
     | 
    
         
            -
                        rescue Bootsnap::LoadPathCache::FallbackScan
         
     | 
| 
       35 
     | 
    
         
            -
                          nil # doesn't really apply here
         
     | 
| 
       36 
     | 
    
         
            -
                        end
         
     | 
| 
       37 
     | 
    
         
            -
                      end
         
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
                      def autoloadable_module?(path_suffix)
         
     | 
| 
       40 
     | 
    
         
            -
                        Bootsnap::LoadPathCache.autoload_paths_cache.load_dir(path_suffix)
         
     | 
| 
       41 
     | 
    
         
            -
                      end
         
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
                      def remove_constant(const)
         
     | 
| 
       44 
     | 
    
         
            -
                        CoreExt::ActiveSupport.without_bootsnap_cache { super }
         
     | 
| 
       45 
     | 
    
         
            -
                      end
         
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
                      def require_or_load(*)
         
     | 
| 
       48 
     | 
    
         
            -
                        CoreExt::ActiveSupport.allow_bootsnap_retry(true) do
         
     | 
| 
       49 
     | 
    
         
            -
                          super
         
     | 
| 
       50 
     | 
    
         
            -
                        end
         
     | 
| 
       51 
     | 
    
         
            -
                      end
         
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
                      # If we can't find a constant using the patched implementation of
         
     | 
| 
       54 
     | 
    
         
            -
                      # search_for_file, try again with the default implementation.
         
     | 
| 
       55 
     | 
    
         
            -
                      #
         
     | 
| 
       56 
     | 
    
         
            -
                      # These methods call search_for_file, and we want to modify its
         
     | 
| 
       57 
     | 
    
         
            -
                      # behaviour.  The gymnastics here are a bit awkward, but it prevents
         
     | 
| 
       58 
     | 
    
         
            -
                      # 200+ lines of monkeypatches.
         
     | 
| 
       59 
     | 
    
         
            -
                      def load_missing_constant(from_mod, const_name)
         
     | 
| 
       60 
     | 
    
         
            -
                        CoreExt::ActiveSupport.allow_bootsnap_retry(false) do
         
     | 
| 
       61 
     | 
    
         
            -
                          super
         
     | 
| 
       62 
     | 
    
         
            -
                        end
         
     | 
| 
       63 
     | 
    
         
            -
                      rescue NameError => e
         
     | 
| 
       64 
     | 
    
         
            -
                        raise(e) if e.instance_variable_defined?(Bootsnap::LoadPathCache::ERROR_TAG_IVAR)
         
     | 
| 
       65 
     | 
    
         
            -
                        e.instance_variable_set(Bootsnap::LoadPathCache::ERROR_TAG_IVAR, true)
         
     | 
| 
       66 
     | 
    
         
            -
             
     | 
| 
       67 
     | 
    
         
            -
                        # This function can end up called recursively, we only want to
         
     | 
| 
       68 
     | 
    
         
            -
                        # retry at the top-level.
         
     | 
| 
       69 
     | 
    
         
            -
                        raise(e) if Thread.current[:without_bootsnap_retry]
         
     | 
| 
       70 
     | 
    
         
            -
                        # If we already had cache disabled, there's no use retrying
         
     | 
| 
       71 
     | 
    
         
            -
                        raise(e) if Thread.current[:without_bootsnap_cache]
         
     | 
| 
       72 
     | 
    
         
            -
                        # NoMethodError is a NameError, but we only want to handle actual
         
     | 
| 
       73 
     | 
    
         
            -
                        # NameError instances.
         
     | 
| 
       74 
     | 
    
         
            -
                        raise(e) unless e.class == NameError
         
     | 
| 
       75 
     | 
    
         
            -
                        # We can only confidently handle cases when *this* constant fails
         
     | 
| 
       76 
     | 
    
         
            -
                        # to load, not other constants referred to by it.
         
     | 
| 
       77 
     | 
    
         
            -
                        raise(e) unless e.name == const_name
         
     | 
| 
       78 
     | 
    
         
            -
                        # If the constant was actually loaded, something else went wrong?
         
     | 
| 
       79 
     | 
    
         
            -
                        raise(e) if from_mod.const_defined?(const_name)
         
     | 
| 
       80 
     | 
    
         
            -
                        CoreExt::ActiveSupport.without_bootsnap_cache { super }
         
     | 
| 
       81 
     | 
    
         
            -
                      end
         
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
                      # Signature has changed a few times over the years; easiest to not
         
     | 
| 
       84 
     | 
    
         
            -
                      # reiterate it with version polymorphism here...
         
     | 
| 
       85 
     | 
    
         
            -
                      def depend_on(*)
         
     | 
| 
       86 
     | 
    
         
            -
                        super
         
     | 
| 
       87 
     | 
    
         
            -
                      rescue LoadError => e
         
     | 
| 
       88 
     | 
    
         
            -
                        raise(e) if e.instance_variable_defined?(Bootsnap::LoadPathCache::ERROR_TAG_IVAR)
         
     | 
| 
       89 
     | 
    
         
            -
                        e.instance_variable_set(Bootsnap::LoadPathCache::ERROR_TAG_IVAR, true)
         
     | 
| 
       90 
     | 
    
         
            -
             
     | 
| 
       91 
     | 
    
         
            -
                        # If we already had cache disabled, there's no use retrying
         
     | 
| 
       92 
     | 
    
         
            -
                        raise(e) if Thread.current[:without_bootsnap_cache]
         
     | 
| 
       93 
     | 
    
         
            -
                        CoreExt::ActiveSupport.without_bootsnap_cache { super }
         
     | 
| 
       94 
     | 
    
         
            -
                      end
         
     | 
| 
       95 
     | 
    
         
            -
                    end
         
     | 
| 
       96 
     | 
    
         
            -
                  end
         
     | 
| 
       97 
     | 
    
         
            -
                end
         
     | 
| 
       98 
     | 
    
         
            -
              end
         
     | 
| 
       99 
     | 
    
         
            -
            end
         
     | 
| 
       100 
     | 
    
         
            -
             
     | 
| 
       101 
     | 
    
         
            -
            module ActiveSupport
         
     | 
| 
       102 
     | 
    
         
            -
              module Dependencies
         
     | 
| 
       103 
     | 
    
         
            -
                class << self
         
     | 
| 
       104 
     | 
    
         
            -
                  prepend(Bootsnap::LoadPathCache::CoreExt::ActiveSupport::ClassMethods)
         
     | 
| 
       105 
     | 
    
         
            -
                end
         
     | 
| 
       106 
     | 
    
         
            -
              end
         
     | 
| 
       107 
     | 
    
         
            -
            end
         
     | 
| 
         @@ -1,32 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # frozen_string_literal: true
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            module Bootsnap
         
     | 
| 
       4 
     | 
    
         
            -
              module LoadPathCache
         
     | 
| 
       5 
     | 
    
         
            -
                class RealpathCache
         
     | 
| 
       6 
     | 
    
         
            -
                  def initialize
         
     | 
| 
       7 
     | 
    
         
            -
                    @cache = Hash.new { |h, k| h[k] = realpath(*k) }
         
     | 
| 
       8 
     | 
    
         
            -
                  end
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
                  def call(*key)
         
     | 
| 
       11 
     | 
    
         
            -
                    @cache[key]
         
     | 
| 
       12 
     | 
    
         
            -
                  end
         
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
                  private
         
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
                  def realpath(caller_location, path)
         
     | 
| 
       17 
     | 
    
         
            -
                    base = File.dirname(caller_location)
         
     | 
| 
       18 
     | 
    
         
            -
                    abspath = File.expand_path(path, base).freeze
         
     | 
| 
       19 
     | 
    
         
            -
                    find_file(abspath)
         
     | 
| 
       20 
     | 
    
         
            -
                  end
         
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
                  def find_file(name)
         
     | 
| 
       23 
     | 
    
         
            -
                    return File.realpath(name).freeze if File.exist?(name)
         
     | 
| 
       24 
     | 
    
         
            -
                    CACHED_EXTENSIONS.each do |ext|
         
     | 
| 
       25 
     | 
    
         
            -
                      filename = "#{name}#{ext}"
         
     | 
| 
       26 
     | 
    
         
            -
                      return File.realpath(filename).freeze if File.exist?(filename)
         
     | 
| 
       27 
     | 
    
         
            -
                    end
         
     | 
| 
       28 
     | 
    
         
            -
                    name
         
     | 
| 
       29 
     | 
    
         
            -
                  end
         
     | 
| 
       30 
     | 
    
         
            -
                end
         
     | 
| 
       31 
     | 
    
         
            -
              end
         
     | 
| 
       32 
     | 
    
         
            -
            end
         
     |