Class: Avm::Git::Scms::GitSubrepo

Inherits:
GitSubBase
  • Object
show all
Defined in:
lib/avm/git/scms/git_subrepo.rb

Instance Method Summary collapse

Methods inherited from GitSubBase

#changed_files, #interval

Instance Method Details

#git_repoEacGit::Local

Returns:

  • (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_subrepoEacGit::Local::Subrepo

Returns:

  • (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

#subpathPathname

Returns:

  • (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

#updateObject



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

Returns:

  • (Boolean)


27
28
29
# File 'lib/avm/git/scms/git_subrepo.rb', line 27

def valid?
  path.join('.gitrepo').file?
end