CypressWriter.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 13 Sep 2012 14:58:01 +0000
changeset 13 f90704544ca0
parent 11 333528cd629a
child 14 d5b81c30785e
permissions -rw-r--r--
More refactoring

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

Object subclass:#CypressWriter
	instanceVariableNames:'repository'
	classVariableNames:''
	poolDictionaries:''
	category:'Cypress-New-Reader & Writer'
!

!CypressWriter class methodsFor:'documentation'!

documentation
"
    An entry point to write a package in Cypress format.
    Example:

    CypressWriter new
        repository: '~/Projects/SmalltalkX/repositories/git/cypress/implementations/smalltalkx/packages';
        write: #'stx:goodies/cypress'.

    [author:]
        Jan Vrany <jan.vrany@fit.cvut.cz>

    [instance variables:]

    [class variables:]

    [see also:]

"
! !

!CypressWriter methodsFor:'accessing'!

repository
    ^ repository
!

repository:aStringOrFilename
    repository := aStringOrFilename.
! !

!CypressWriter class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !