Class: Avm::Scms::Base
- Inherits:
-
Object
show all
- Includes:
- With::ApplicationStereotype
- Defined in:
- lib/avm/scms/base.rb,
lib/avm/scms/base/commits.rb,
lib/avm/scms/base/remotes.rb,
lib/avm/scms/base/branches.rb,
lib/avm/scms/base/milestones.rb
Direct Known Subclasses
Null
Defined Under Namespace
Modules: Branches, Commits, Milestones
Instance Method Summary
collapse
Instance Method Details
17
18
19
|
# File 'lib/avm/scms/base.rb', line 17
def changed_files
raise_abstract_method __method__
end
|
#completer(options = {}) ⇒ Object
22
23
24
|
# File 'lib/avm/scms/base.rb', line 22
def completer(options = {}) raise_abstract_method __method__
end
|
27
28
29
|
# File 'lib/avm/scms/base.rb', line 27
def interval(_from, _to)
raise_abstract_method __method__
end
|
#name ⇒ Object
31
32
33
|
# File 'lib/avm/scms/base.rb', line 31
def name
self.class.name.demodulize
end
|
#relative_path_from_parent_scm ⇒ Pathname
36
37
38
39
40
|
# File 'lib/avm/scms/base.rb', line 36
def relative_path_from_parent_scm
parent_scm.if_present(nil) do |v|
path.relative_path_from(v.path)
end
end
|
43
44
45
|
# File 'lib/avm/scms/base.rb', line 43
def subs
raise_abstract_method __method__
end
|
#to_s ⇒ Object
47
48
49
|
# File 'lib/avm/scms/base.rb', line 47
def to_s
name
end
|