git/GitRepositoryHandle.st
author vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
Wed, 03 Oct 2012 18:40:32 +0000
changeset 27 a36a11925d3f
parent 5 57c20a77e549
child 31 d96d7eff6efc
permissions -rw-r--r--
Class category renames

"{ Package: 'stx:libscm/git' }"

ExternalAddress subclass:#GitRepositoryHandle
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Git-Core-Internal-Handles'
!


!GitRepositoryHandle class methodsFor:'accessing'!

libraryName

    OperatingSystem isUNIXlike ifTrue:[^'libgit2.so'].

    OperatingSystem isMSWINDOWSlike ifTrue:[^'git2.dll'].

    self error:'Library name for host OS is not known'
!

structSize
    "Returns size of undelaying structure in bytes"

    ^0
! !

!GitRepositoryHandle class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !