Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
ruby-2.7
/
usr
/
lib
/
ruby
/
2.7.0
/
bundler
/
vendor
/
thor
/
lib
/
thor
/
//opt/ruby-2.7/usr/lib/ruby/2.7.0/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