module Voom::Presenters::DSL::Components::Mixins::Progress
Public Instance Methods
progress(**attributes, &block)
click to toggle source
# File lib/voom/presenters/dsl/components/mixins/progress.rb, line 7 def progress(**attributes, &block) return @progress if locked? @progress = Components::Progress.new(parent: self, **attributes, &block) end