rubytui.rb

Path: lib/rubytui.rb
Last Update: Sat Dec 08 13:26:00 -0800 2012
RubyTUI dot/f_0.png

Copyright (c) 2005, Free Geek.

This is free software. You may use, modify, and/or redistribute this software under the terms of the GNU General Public License, version 2 or later. (See www.gnu.org/copyleft/gpl.html)

Synopsis

   RubyTUI is a set of functions that are useful for dealing with
   the command line interface.

Authors

   * Michael Granger <ged@FaerieMUD.org>
   * Martin Chase <stillflame@freegeek.org>

Required files

readline   timeout  

Methods

readline  

Included Modules

Readline

Public Instance methods

puts "faking readline.."

[Source]

    # File lib/rubytui.rb, line 26
26: def readline(prompt)
27: $stderr.print prompt.chomp
28: return $stdin.gets.chomp
29: end

[Validate]