module LiveFixtures

Constants

MissingReferenceError

A labeled reference was not found. Maybe the referenced model was not exported, or the insert order attempted to import the reference before the referenced model?

VERSION

Public Instance Methods

get_progress_bar(total:, title: ProgressBar.create( total: total, title: title, format:'%t: |%B| %P% %E', throttle_rate: 0.1) click to toggle source
# File lib/live_fixtures.rb, line 12
def get_progress_bar total:, title:
  ProgressBar.create(
    total: total,
    title: title,
    format:'%t: |%B| %P% %E',
    throttle_rate: 0.1
  )
end