module Net::SSH::PromptMethods::Highline
def prompt(prompt, echo=true)
+false+, the characters entered by the user will not be echoed to the
Uses Highline#ask to present a prompt and accept input. If +echo+ is
def prompt(prompt, echo=true) @highline ||= ::HighLine.new @highline.ask(prompt + " ") { |q| q.echo = echo } end