Class: Gem::StreamUI

Inherits:
Object
  • Object
show all
Defined in:
lib/rubygems_plugin.rb

Instance Method Summary collapse

Instance Method Details

#ask_for_password(message) ⇒ Object



14
15
16
17
18
19
# File 'lib/rubygems_plugin.rb', line 14

def ask_for_password(message)
  system "stty -echo"
  password = ask(message)
  system "stty echo"
  password
end