module DtkCommon::GitRepo::Adapter::Rugged::CommonMixin

Private Instance Methods

branch() click to toggle source
# File lib/git_repo/adapters/rugged/common.rb, line 30
def branch()
  @repo_branch.branch()
end
lookup(sha) click to toggle source
# File lib/git_repo/adapters/rugged/common.rb, line 37
def lookup(sha)
  rugged_repo().lookup(sha)
end
rugged_repo() click to toggle source
# File lib/git_repo/adapters/rugged/common.rb, line 33
def rugged_repo()
  @repo_branch.rugged_repo()
end