Method: InnerPlan::ProgressBarSeparatorComponent#initialize
- Defined in:
- app/components/inner_plan/progress_bar_separator_component.rb
#initialize(completed: 0, total: 100) ⇒ ProgressBarSeparatorComponent
Returns a new instance of ProgressBarSeparatorComponent.
3 4 5 6 |
# File 'app/components/inner_plan/progress_bar_separator_component.rb', line 3 def initialize(completed: 0, total: 100) @completed = completed @total = total end |