Class: Avm::Git::Scms::GitSubrepo
Instance Method Summary
collapse
Methods inherited from GitSubBase
#changed_files, #interval
Instance Method Details
#git_repo ⇒ EacGit::Local
13
14
15
|
# File 'lib/avm/git/scms/git_subrepo.rb', line 13
def git_repo
@git_repo ||= ::EacGit::Local.find(path)
end
|
#git_subrepo ⇒ EacGit::Local::Subrepo
18
19
20
|
# File 'lib/avm/git/scms/git_subrepo.rb', line 18
def git_subrepo
@git_subrepo ||= git_repo.subrepo(subpath)
end
|
#subpath ⇒ Pathname
23
24
25
|
# File 'lib/avm/git/scms/git_subrepo.rb', line 23
def subpath
path.expand_path.relative_path_from(git_repo.root_path.expand_path)
end
|
#update ⇒ Object
7
8
9
10
|
# File 'lib/avm/git/scms/git_subrepo.rb', line 7
def update
git_subrepo.command('clean').execute!
git_subrepo.command('pull').execute!
end
|
#valid? ⇒ Boolean
27
28
29
|
# File 'lib/avm/git/scms/git_subrepo.rb', line 27
def valid?
path.join('.gitrepo').file?
end
|