Ask for a password. Does not echo response to terminal.
# File lib/rubygems/user_interaction.rb, line 303
def ask_for_password(question)
return nil if not tty?
@outs.print(question, " ")
@outs.flush
password = _gets_noecho
@outs.puts
password.chomp! if password
password
end