Sha256: b5836669724f142003a548f28266aee801478004993ba5f5b38c92b440ffaef6
Contents?: true
Size: 704 Bytes
Versions: 7
Compression:
Stored size: 704 Bytes
Contents
# -*- coding: UTF-8 -*- # # Copyright 2013 whiteleaf. All rights reserved. # class ProgressBar def initialize(max, interval = 1, width = 50, char = "*") @max = max == 0 ? 1.0 : max.to_f @interval = interval @width = width @char = char @counter = 0 end def output(num) return if $debug @counter += 1 return unless @counter % @interval == 0 ratio = calc_ratio(num) now = (@width * ratio).round rest = @width - now STDOUT.print "[" + @char * now + ' ' * rest + "] #{(ratio * 100).round}%\r" end def clear return if $debug STDOUT.print " " * 79 + "\r" end def calc_ratio(num) num / @max end end
Version data entries
7 entries across 7 versions & 1 rubygems