Class
SilentUI
is a UI choice that is absolutely silent.
Class Methods
::
lib/rubygems/user_interaction.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rubygems/user_interaction.rb, line 642
def initialize
reader, writer = nil, nil
reader = File.open(IO::NULL, 'r')
writer = File.open(IO::NULL, 'w')
super reader, writer, writer, false
end
The SilentUI
has no arguments as it does not use any stream.
Instance Methods
#
lib/rubygems/user_interaction.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rubygems/user_interaction.rb, line 651
def close
super
@ins.close
@outs.close
end
No documentation available