0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Essentially, readline++
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0
 Project Readme

Readline ng

Build Status

Readline-NG is /not/ a drop in replacement for readline.

It addresses a very specific need I had inside a twitter client, but hopefully it's of use to someone else, too.

Readline relies on being able to poll for input often, leading to a hideously inefficient event loop, but generally

reader = ReadlineNG::Reader.new
loop do
  reader.tick
  reader.each_line do |line|
    # Handle full line of input
    reader.puts_above("user input #{line}")
  end
end