Method: ProgressBar#inc

Defined in:
lib/taps/progress_bar.rb

#inc(step = 1) ⇒ Object



210
211
212
213
214
215
# File 'lib/taps/progress_bar.rb', line 210

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