Sean O'Halpin
Sean O'Halpin
The code as written should work for your use case: "N" will match the last comparison so the result will be false, "Y" won't match anything so will be true....
Hi Felix, Thanks for this bug report. You might have noticed that I have not been updating ffi-ncurses for a while. I have recently had a change of circumstance which...
What does this have to do with ffi-ncurses? Have you raised the issue with the highline maintainers?
Hi, That doesn't look like an ffi-ncurses or an ffi error. /usr/lib/libncurses.so should be a binary file - you shouldn't see anything like that when you cat it. It looks...
Could you post the exact error message you get? In the meantime, you could try: $ sudo apt-get install libncursesw5 to ensure that you have ncursesw installed on your system.
Hi, This looks to me like your ncurses installation is borked, possibly that the target of your libncurses.so symlinks have been moved or deleted. Try this - you should get...
Looks like ffi is not searching in /usr/lib/i386-linux. As a workaround, you could try explicitly setting the library that ffi-ncurses looks for: export RUBY_FFI_NCURSES_LIB=/usr/lib/i386-linux-gnu/libncursesw.so before calling your program.
I can't reproduce your problem on my systems. What version of Ubuntu are you running? Please try this and let me know if it works: export RUBY_FFI_NCURSES_LIB=/lib/i386-linux-gnu/libncursesw.so.5.9 then run your...
The problem you've posted above is with installing the ffi gem using jruby. It's not a problem with ffi-ncurses. It would be more appropriate to raise it with the ffi...