Brea/repository/BaselineOfBrea/BaselineOfBrea.class.st

28 lines
681 B
Smalltalk
Raw Normal View History

2020-07-25 18:04:11 +00:00
"
I am BaselineOfBrea, I load the code for the Brea project.
I am a BaselineOf.
"
Class {
#name : #BaselineOfBrea,
#superclass : #BaselineOf,
#category : #BaselineOfBrea
}
{ #category : #baselines }
BaselineOfBrea >> baseline: spec [
<baseline>
spec
for: #common
do: [
"Dependencies"
spec
2020-07-25 18:14:37 +00:00
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ];
2020-07-25 18:32:41 +00:00
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache/repository' ];
baseline: 'TaskIt' with: [ spec repository: 'github://noha/taskit:add-all-future' ].
2020-07-25 18:04:11 +00:00
"Packages"
2020-07-25 18:32:41 +00:00
spec package: 'Brea' with: [ spec requires: #('NeoJSON' 'Mustache' 'TaskIt') ].
2020-07-25 18:04:11 +00:00
]
]