class DtkCommon::GitRepo::Branch
Public Class Methods
new(repo_path,branch='master')
click to toggle source
Calls superclass method
# File lib/git_repo.rb, line 32 def initialize(repo_path,branch='master') super(repo_path) @branch = branch end
Private Instance Methods
adapter_initialize_args()
click to toggle source
# File lib/git_repo.rb, line 37 def adapter_initialize_args() [@repo_path,@branch] end