class Bundler::Thor::LineEditor::Basic

def get_input

def get_input
  if echo?
    $stdin.gets
  else
    # Lazy-load io/console since it is gem-ified as of 2.3
    require "io/console"
    $stdin.noecho(&:gets)
  end
end