Module: PasswordCallback

Defined in:
lib/nventory.rb

Constant Summary collapse

@@password =
nil

Class Method Summary collapse

Class Method Details

.get_passwordObject



50
51
52
53
54
55
56
57
58
# File 'lib/nventory.rb', line 50

def self.get_password
  while !@@password
    system "stty -echo"
    print "Password: "
    @@password = $stdin.gets.chomp
    system "stty echo"
  end
  @@password
end