method
paths
v2_6_3 -
Show latest stable
- Class:
Bundler::Standalone
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