Simple Console Progress Bar
I was working on a script to sync hundreds of thousands of records between two databases, and wanted a simple way to keep track of progress. I couldn’t find one that was easy to use and did what I wanted, so I wrote my own. Blog Post with Example Source Code on Github
Comments
There’s the obtusely named “progressbar” gem, found at http://rubygems.org/gems/progressbar.
You should also look at http://rubygems.org/gems/each_with_progress.
Post a comment