Method: ProgressBar#inc

Defined in:
lib/gonzui/progressbar.rb

#inc(step = 1) ⇒ Object



209
210
211
212
213
214
# File 'lib/gonzui/progressbar.rb', line 209

def inc(step = 1)
  @current += step
  @current = @total if @current > @total
  show_if_needed
  @previous = @current
end