How do I use (n)curses in Ruby? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:29:42Z http://stackoverflow.com/feeds/question/1306 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1306/how-do-i-use-ncurses-in-ruby 9 How do I use (n)curses in Ruby? jakemcgraw 2008-08-04T14:57:59Z 2008-08-05T14:05:08Z <p>I'd like to create a progress bar to indicate the status of an a batch job in Ruby. I've read some <a href="http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/" rel="nofollow" title="NCURSES Programming HOWTO">tutorials</a> / <a href="http://ncurses-ruby.berlios.de/" rel="nofollow" title="ncurses-ruby">libraries</a> on using ncurses, none of which were particularly helpful in explaining how create an "animated" progress bar in the terminal or using curses with Ruby. I'm already aware of using a separate thread to monitor the progress of a given job, I'm just not sure how to proceed with drawing a progress bar. </p> <p><strong>Update</strong> <a href="http://0xcc.net/ruby-progressbar/" rel="nofollow" title="ruby-progressbar">ProgressBar</a> class was incredibly straight-forward, perfectly solved my problem.</p> http://stackoverflow.com/questions/1306/how-do-i-use-ncurses-in-ruby/1318#1318 5 Answer by Joey deVilla for How do I use (n)curses in Ruby? Joey deVilla 2008-08-04T15:11:19Z 2008-08-04T15:11:19Z <p>You might be able to get some implementation ideas from the <a href="http://0xcc.net/ruby-progressbar/" rel="nofollow" title="Ruby/ProgressBar">Ruby/ProgressBar library</a>, which generates text progress bars. I stumbled across it a couple of months back but haven't made any use of it.</p> http://stackoverflow.com/questions/1306/how-do-i-use-ncurses-in-ruby/1375#1375 0 Answer by Michiel de Mare for How do I use (n)curses in Ruby? Michiel de Mare 2008-08-04T16:03:22Z 2008-08-04T16:03:22Z <p>On windows, curses works out of the box, ncurses doesn't, and for a progress bar curses should be sufficient. So, use curses instead of ncurses.</p> <p>Also, both curses and ncurses are wafer-thin wrappers around the c library - that means you don't really need Ruby-specific tutorials.</p> <p>However, on the <a href="http://www.pragprog.com/titles/ruby/source_code" rel="nofollow">site for the PickAxe</a> you can download all the code examples for the book. The file "ex1423.rb" contains a curses demo which plays Pong - that should give you plenty of material to get you going.</p> http://stackoverflow.com/questions/1306/how-do-i-use-ncurses-in-ruby/1378#1378 0 Answer by sparkes for How do I use (n)curses in Ruby? sparkes 2008-08-04T16:18:32Z 2008-08-04T16:18:32Z <p>Personally I think curses is overkill in this case. While the curses lib is nice (and I frequently use it myself) it's a PITA to relearn every time I haven't needed it for 12 months which has to be the sign of a bad interface design.</p> <p>If for some reason you can't get on with <a href="http://beta.stackoverflow.com/questions/1306/#1318" rel="nofollow">the progress bar lib Joey suggested</a> roll your own and release it under a pretty free licence for instant kudos :)</p>