Class: Eggsh::Runner
Instance Method Summary collapse
-
#initialize ⇒ Runner
constructor
A new instance of Runner.
- #run! ⇒ Object
Constructor Details
Instance Method Details
#run! ⇒ Object
15 16 17 18 19 20 21 22 23 |
# File 'lib/runner.rb', line 15 def run! Readline.completion_append_character = " " Readline.completion_proc = Readline::FILENAME_COMPLETION_PROC Readline.basic_word_break_characters = '' while line = read @shell.exec line end end |