module Net::SSH::PromptMethods::Highline

  1. lib/net/ssh/prompt.rb
Parent: PromptMethods

Defines the prompt method to use if the Highline library is installed.

Methods

Public Instance

  1. prompt

Public Instance methods

prompt (prompt, echo=true)

Uses Highline#ask to present a prompt and accept input. If echo is false, the characters entered by the user will not be echoed to the screen.

[show source]
# File lib/net/ssh/prompt.rb, line 16
def prompt(prompt, echo=true)
  @highline ||= ::HighLine.new
  @highline.ask(prompt + " ") { |q| q.echo = echo }
end