查看网站首页
查看网站首页
查看 sitemap.xml
✏️ 正在编辑: vendor.rb
路径:
/opt/alt/ruby30/share/rubygems/rubygems/source/vendor.rb
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
# frozen_string_literal: true ## # This represents a vendored source that is similar to an installed gem. class Gem::Source::Vendor < Gem::Source::Installed ## # Creates a new Vendor source for a gem that was unpacked at +path+. def initialize(path) @uri = path end def <=>(other) case other when Gem::Source::Lock then -1 when Gem::Source::Vendor then 0 when Gem::Source then 1 else nil end end end
💾 保存文件
← 返回文件管理器