class Infobar::Counter

def progressed

def progressed
  if @total.zero?
    0.0
  else
    @current / @total.to_f
  end
end