Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
opt
/
ruby-2.7
/
usr
/
lib
/
ruby
/
2.7.0
/
bundler
/
plugin
/
installer
/
//proc/self/root/opt/ruby-2.7/usr/lib/ruby/2.7.0/bundler/plugin/installer/rubygems.rb
# frozen_string_literal: true module Bundler module Plugin class Installer class Rubygems < Bundler::Source::Rubygems def version_message(spec) "#{spec.name} #{spec.version}" end private def requires_sudo? false # Will change on implementation of project level plugins end def rubygems_dir Plugin.root end def cache_path Plugin.cache end end end end end