Skip to content

Instantly share code, notes, and snippets.

@radavis
Created August 15, 2014 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radavis/c4447542f8fb4d4c314d to your computer and use it in GitHub Desktop.
Save radavis/c4447542f8fb4d4c314d to your computer and use it in GitHub Desktop.
require 'ruby-progressbar'
progress = ProgressBar.create(format: '%a %bᗧ%i %p%% %t',
progress_mark: ' ',
remainder_mark: '・',
starting_at: 1)
99.times do
sleep(0.1)
progress.increment
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment