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?
11 12 13 |
# File 'lib/avm/scms/base/branches.rb', line 11 def branch(id) # rubocop:disable Lint/UnusedMethodArgument raise_abstract_method __method__ end |
#default_remote ⇒ Avm::Scms::Remote
10 11 12 |
# File 'lib/avm/scms/base/remotes.rb', line 10 def default_remote raise_abstract_method __method__ end |
#head_branch ⇒ Avm::Scms::Branch
16 17 18 |
# File 'lib/avm/scms/base/branches.rb', line 16 def head_branch raise_abstract_method __method__ end |
#remote(id) ⇒ Avm::Scms::Remote?
16 17 18 |
# File 'lib/avm/scms/base/remotes.rb', line 16 def remote(id) # rubocop:disable Lint/UnusedMethodArgument raise_abstract_method __method__ end |