Hacked By AnonymousFox

Current Path : /opt/alt/ruby30/share/gems/gems/bundler-2.2.33/lib/bundler/vendor/thor/lib/thor/
Upload File :
Current File : //opt/alt/ruby30/share/gems/gems/bundler-2.2.33/lib/bundler/vendor/thor/lib/thor/line_editor.rb

require_relative "line_editor/basic"
require_relative "line_editor/readline"

class Bundler::Thor
  module LineEditor
    def self.readline(prompt, options = {})
      best_available.new(prompt, options).readline
    end

    def self.best_available
      [
        Bundler::Thor::LineEditor::Readline,
        Bundler::Thor::LineEditor::Basic
      ].detect(&:available?)
    end
  end
end

Hacked By AnonymousFox1.0, Coded By AnonymousFox