class Gem::ConsoleUI

StreamUI 的子类,使用 $stdin、$stdout 和 $stderr 实例化用户交互。

公共类方法

new() 点击以切换源代码

Console UI 没有参数,因为它默认从 stdin 读取输入,输出到 stdout,警告或错误输出到 stderr。

调用父类方法 Gem::StreamUI::new
# File rubygems/user_interaction.rb, line 602
def initialize
  super $stdin, $stdout, $stderr, true
end