Sha256: 438d1998f87aa2dbdb51d93c5b5f4cbcddf00e70b0a51e6d006dd9ec42570a59

Contents?: true

Size: 1.42 KB

Versions: 21

Compression:

Stored size: 1.42 KB

Contents

module Bootsnap
  module ExplicitRequire
    ARCHDIR    = RbConfig::CONFIG['archdir']
    RUBYLIBDIR = RbConfig::CONFIG['rubylibdir']
    DLEXT      = RbConfig::CONFIG['DLEXT']

    def self.from_self(feature)
      require_relative("../#{feature}")
    end

    def self.from_rubylibdir(feature)
      require(File.join(RUBYLIBDIR, "#{feature}.rb"))
    end

    def self.from_archdir(feature)
      require(File.join(ARCHDIR, "#{feature}.#{DLEXT}"))
    end

    # Given a set of gems, run a block with the LOAD_PATH narrowed to include
    # only core ruby source paths and these gems -- that is, roughly,
    # temporarily remove all gems not listed in this call from the LOAD_PATH.
    #
    # This is useful before bootsnap is fully-initialized to load gems that it
    # depends on, without forcing full LOAD_PATH traversals.
    def self.with_gems(*gems)
      orig = $LOAD_PATH.dup
      $LOAD_PATH.clear
      gems.each do |gem|
        pat = %r{
          /
          (gems|extensions/[^/]+/[^/]+)          # "gems" or "extensions/x64_64-darwin16/2.3.0"
          /
          #{Regexp.escape(gem)}-(\h{12}|(\d+\.)) # msgpack-1.2.3 or msgpack-1234567890ab
        }x
        $LOAD_PATH.concat(orig.grep(pat))
      end
      $LOAD_PATH << ARCHDIR
      $LOAD_PATH << RUBYLIBDIR
      begin
        yield
      rescue LoadError
        $LOAD_PATH.replace(orig)
        yield
      end
    ensure
      $LOAD_PATH.replace(orig)
    end
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/bootsnap-1.4.5/lib/bootsnap/explicit_require.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/bootsnap-1.4.5/lib/bootsnap/explicit_require.rb
bootsnap-1.4.5-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.5 lib/bootsnap/explicit_require.rb
bootsnap-1.4.4-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.4 lib/bootsnap/explicit_require.rb
bootsnap-1.4.3-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.3 lib/bootsnap/explicit_require.rb
bootsnap-1.4.2-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.2 lib/bootsnap/explicit_require.rb
bootsnap-1.4.2.rc3 lib/bootsnap/explicit_require.rb
bootsnap-1.4.2.rc2-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.2.rc2 lib/bootsnap/explicit_require.rb
bootsnap-1.4.2.rc1-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.2.rc1 lib/bootsnap/explicit_require.rb
bootsnap-1.4.1-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.1 lib/bootsnap/explicit_require.rb
bootsnap-1.4.0 lib/bootsnap/explicit_require.rb
bootsnap-1.4.0-java lib/bootsnap/explicit_require.rb
bootsnap-1.4.0.pre3 lib/bootsnap/explicit_require.rb