模块 Bundler::Thor::LineEditor
公共类方法
best_available() 点击切换源代码
# File bundler/vendor/thor/lib/thor/line_editor.rb, line 10 def self.best_available [ Bundler::Thor::LineEditor::Readline, Bundler::Thor::LineEditor::Basic ].detect(&:available?) end
readline(prompt, options = {}) 点击切换源代码
# File bundler/vendor/thor/lib/thor/line_editor.rb, line 6 def self.readline(prompt, options = {}) best_available.new(prompt, options).readline end