method

paths

ruby latest stable - Class: Bundler::Standalone

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

paths()
private

No documentation available.

# File lib/bundler/installer/standalone.rb, line 27
    def paths
      @specs.map do |spec|
        next if spec.name == "bundler"
        Array(spec.require_paths).map do |path|
          gem_path(path, spec).sub(version_dir, '#{ruby_engine}/#{ruby_version}')
          # This is a static string intentionally. It's interpolated at a later time.
        end
      end.flatten
    end