文件操作 - installed.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/3.2.0/rubygems/source/installed.rb
编辑文件内容
# frozen_string_literal: true ## # Represents an installed gem. This is used for dependency resolution. class Gem::Source::Installed < Gem::Source def initialize # :nodoc: @uri = nil end ## # Installed sources sort before all other sources def <=>(other) case other when Gem::Source::Git, Gem::Source::Lock, Gem::Source::Vendor then -1 when Gem::Source::Installed then 0 when Gem::Source then 1 else nil end end ## # We don't need to download an installed gem def download(spec, path) nil end def pretty_print(q) # :nodoc: q.text "[Installed]" end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件