Method: BuildTool::VCS::GitConfiguration#vcs

Defined in:
lib/build-tool/vcs/git.rb

#vcs(mod) ⇒ Object

Raises:

  • (StandardError)


168
169
170
171
172
# File 'lib/build-tool/vcs/git.rb', line 168

def vcs( mod )
    raise StandardError if @module and ! mod.equal?( @module )
    @module = mod
    Git.new( self )
end