Module: Avm::Scms::Base::Branches
- Defined in:
- lib/avm/scms/base/remotes.rb,
lib/avm/scms/base/branches.rb
Instance Method Summary collapse
- #branch(id) ⇒ Avm::Scms::Branch?
- #default_remote ⇒ Avm::Scms::Remote
- #head_branch ⇒ Avm::Scms::Branch
- #remote(id) ⇒ Avm::Scms::Remote?
Instance Method Details
#branch(id) ⇒ Avm::Scms::Branch?
9 10 11 |
# File 'lib/avm/scms/base/branches.rb', line 9 def branch(id) # rubocop:disable Lint/UnusedMethodArgument raise_abstract_method __method__ end |
#default_remote ⇒ Avm::Scms::Remote
8 9 10 |
# File 'lib/avm/scms/base/remotes.rb', line 8 def default_remote raise_abstract_method __method__ end |
#head_branch ⇒ Avm::Scms::Branch
14 15 16 |
# File 'lib/avm/scms/base/branches.rb', line 14 def head_branch raise_abstract_method __method__ end |
#remote(id) ⇒ Avm::Scms::Remote?
14 15 16 |
# File 'lib/avm/scms/base/remotes.rb', line 14 def remote(id) # rubocop:disable Lint/UnusedMethodArgument raise_abstract_method __method__ end |