class Gem::StreamUI::SilentDownloadReporter
一个完全静默的下载报告器。
公共类方法
源代码
# File lib/rubygems/user_interaction.rb, line 514 def initialize(out_stream, *args) end
静默下载报告器忽略所有参数
公共实例方法
源代码
# File lib/rubygems/user_interaction.rb, line 534 def done end
静默下载报告器不会告诉你下载何时完成。因为它就是静默的。
源代码
# File lib/rubygems/user_interaction.rb, line 521 def fetch(filename, filesize) end
静默下载报告器不显示 filename
也不关心 filesize
,因为它就是静默的。
源代码
# File lib/rubygems/user_interaction.rb, line 527 def update(current) end
任何事情都不能更新静默下载报告器。