module Thor::LineEditor

Public Class Methods

# File lib/thor/line_editor.rb, line 10
def self.best_available
  [
    Thor::LineEditor::Readline,
    Thor::LineEditor::Basic
  ].detect(&:available?)
end
# File lib/thor/line_editor.rb, line 6
def self.readline(prompt, options = {})
  best_available.new(prompt, options).readline
end