Class: Kward::GitWorktreeManager::MergeResult
- Inherits:
-
Struct
- Object
- Struct
- Kward::GitWorktreeManager::MergeResult
- Defined in:
- lib/kward/git_worktree_manager.rb
Instance Attribute Summary collapse
-
#conflicts ⇒ Object
Returns the value of attribute conflicts.
-
#output ⇒ Object
Returns the value of attribute output.
-
#status ⇒ Object
Returns the value of attribute status.
Instance Method Summary collapse
Instance Attribute Details
#conflicts ⇒ Object
Returns the value of attribute conflicts
82 83 84 |
# File 'lib/kward/git_worktree_manager.rb', line 82 def conflicts @conflicts end |
#output ⇒ Object
Returns the value of attribute output
82 83 84 |
# File 'lib/kward/git_worktree_manager.rb', line 82 def output @output end |
#status ⇒ Object
Returns the value of attribute status
82 83 84 |
# File 'lib/kward/git_worktree_manager.rb', line 82 def status @status end |
Instance Method Details
#conflicted? ⇒ Boolean
87 88 89 |
# File 'lib/kward/git_worktree_manager.rb', line 87 def conflicted? status == :conflicted end |
#merged? ⇒ Boolean
83 84 85 |
# File 'lib/kward/git_worktree_manager.rb', line 83 def merged? status == :merged end |