# File lib/ansi/progressbar.rb, line 130
    def inc(step = 1)
      @current += step
      @current = @total if @current > @total
      show_progress
      @previous = @current
    end