Skip to content

searls/bar-of-progress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bar-of-progress

Build Status Code Climate

Everyone knows that progress bars are one of the hard, unsolved problems of computer science, so I decided to give it a shot.

xkcd rocks

API

Default progress bars

require 'bar-of-progress'

bar = BarOfProgress.new #=> defaults to completeness == "100"  

bar.progress #=> "[◌◌◌◌◌◌◌◌◌◌]"

bar.progress(50) #=> "[●●●●●◌◌◌◌◌]"

bar.progress(49) #=> "[●●●●◍◌◌◌◌◌]"

Custom progress bars

require 'bar-of-progress'

bar = BarOfProgress.new(
  :total => 115.5,              #=> default (will be converted to BigDecimal): 100
  :length => 14,                #=> default (will be converted to Fixnum): 10
  :braces => %w{( )},           #=> default: ["[", "]"]
  :complete_indicator => "■",   #=> default: "●"
  :partial_indicator => "▤",    #=> default: "◍"
  :incomplete_indicator => "□", #=> default: "◌"
  :precision => 18              #=> default (determines what is considered 'partial'): 20
)

bar.progress(30) #=> "(■■■▤□□□□□□□□□□)"

About

One of the hardest problems in computer science: Solved ✅

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages