|
|
|
|
|
by knuckle_cake
5880 days ago
|
|
I think you should continue working on it. If nothing else it builds your personal code library up. I'm not sure how many apps in general use ncurses anymore, but I don't think it's going anywhere. I'm actually developing a console-based ruby app right now. What would have been useful for me however is something to easily work with a REPL (including commands, subcommands, etc.) without a) having to drop into a full IRB session b) any assumptions that I want to parse an ARGV-like line with --long-switches and whatnot. I don't. cmdparse is the closest, but still isn't good enough. Thanks for doing the work on your project. Open-source authors don't get thanked often enough if their project isn't used by millions. |
|
I had been actually thinking on the lines of how emacs can expose its commands -- although i am not an emacs user. I'd need to study that.
I am very familiar with various command line parsing libraries, including cmdparse. I did not get your requirement in this context. Thanks for answering.