class Formatador::ProgressBar

def initialize(total, opts = {}, &block)

def initialize(total, opts = {}, &block)
  @current = opts.delete(:start) || 0
  @total   = total.to_i
  @opts    = opts
  @lock    = Mutex.new
  @complete_proc = block_given? ? block : Proc.new { }
end