I am implementing a little telnet server in Ruby. The problem I'm currently facing is that I want to add readline support so that I can have tab-completion and command-line history support. I have looked at the Readline library, but it seems as though it will only work via stdin. Is there any way of doing this in Ruby (I noticed the solution for Python)?
feedback
|
|
You can do this by plumbing a pipe into readline. Here's an example using the
Output:
| |||
|
feedback
|