From: Vincent Foley Date: 2005-05-08T06:19:24+09:00 Subject: Re: HighLine 0.4.0 Hello James, good job on the new release, I plan to use HighLine in an application I am building right now, however I would really like it if you could add an ask_password method. Right now, I use this small hackish method: # File lib/helpers.rb, line 12 12: def self.ask_password(prompt) 13: print prompt 14: system("stty -echo echonl") 15: pass = gets.chomp 16: system("stty echo -echonl") 17: return pass 18: end Maybe something to add to your TODO :) Vincent.