Class: ChronoForge::Dashboard::BranchesPresenter::Merge
- Inherits:
-
Struct
- Object
- Struct
- ChronoForge::Dashboard::BranchesPresenter::Merge
- Defined in:
- app/presenters/chrono_forge/dashboard/branches_presenter.rb
Overview
One merge join (a merge$<names> log = a BranchMergeJob’s durable target). state: :merging (pending — a poller is joining) | :merged (completed).
Instance Attribute Summary collapse
-
#names ⇒ Object
Returns the value of attribute names.
-
#started_at ⇒ Object
Returns the value of attribute started_at.
-
#state ⇒ Object
Returns the value of attribute state.
Instance Method Summary collapse
Instance Attribute Details
#names ⇒ Object
Returns the value of attribute names
9 10 11 |
# File 'app/presenters/chrono_forge/dashboard/branches_presenter.rb', line 9 def names @names end |
#started_at ⇒ Object
Returns the value of attribute started_at
9 10 11 |
# File 'app/presenters/chrono_forge/dashboard/branches_presenter.rb', line 9 def started_at @started_at end |
#state ⇒ Object
Returns the value of attribute state
9 10 11 |
# File 'app/presenters/chrono_forge/dashboard/branches_presenter.rb', line 9 def state @state end |
Instance Method Details
#merging? ⇒ Boolean
10 |
# File 'app/presenters/chrono_forge/dashboard/branches_presenter.rb', line 10 def merging? = state == :merging |