Fossil/repository/BaselineOfFossil/BaselineOfFossil.class.st

30 lines
615 B
Smalltalk

"
I define the installation procedure for Fossil package support.
"
Class {
#name : #BaselineOfFossil,
#superclass : #BaselineOf,
#category : #BaselineOfFossil
}
{ #category : #baselines }
BaselineOfFossil >> baseline: spec [
<baseline>
spec
for: #common
do: [
"Dependencies"
spec baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ].
"This package"
spec baseline: 'Fossil' with: [ spec repository: 'http://smalltalkhub.com/mc/Offray/Fossil' ].
]
]
{ #category : #accessing }
BaselineOfFossil >> projectClass [
^ MetacelloCypressBaselineProject
]