MetacelloScriptGitHubDownloadNotification.st
author jv
Mon, 03 Sep 2012 11:13:41 +0000
changeset 1 9e312de5f694
permissions -rw-r--r--
- Initial commit

"{ Package: 'stx:goodies/metacello' }"

Notification subclass:#MetacelloScriptGitHubDownloadNotification
	instanceVariableNames:'projectPath versionString'
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Scripts'
!


!MetacelloScriptGitHubDownloadNotification methodsFor:'accessing'!

projectPath
	^ projectPath
!

projectPath: anObject
	projectPath := anObject
!

versionString
	^ versionString
!

versionString: anObject
	versionString := anObject
! !

!MetacelloScriptGitHubDownloadNotification class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !