Method: CWM::ProgressBar#forward

Defined in:
library/cwm/src/lib/cwm/progress_bar.rb

#forwardObject

Moves the progress forward and sets the next step as label if needed (see #show_steps?)



53
54
55
56
57
58
59
# File 'library/cwm/src/lib/cwm/progress_bar.rb', line 53

def forward
  return if complete?

  @current_step_index += 1

  refresh
end