class Gem::SilentUI::NullIO

An absolutely silent IO.

Public Instance Methods

flush() click to toggle source
# File lib/rubygems/user_interaction.rb, line 640
def flush
end
gets(*args) click to toggle source
# File lib/rubygems/user_interaction.rb, line 643
def gets(*args)
end
print(*args) click to toggle source
puts(*args) click to toggle source
# File lib/rubygems/user_interaction.rb, line 634
def puts(*args)
end
tty?() click to toggle source
# File lib/rubygems/user_interaction.rb, line 646
def tty?
  false
end