26 lines
485 B
Smalltalk
26 lines
485 B
Smalltalk
|
"
|
||
|
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
|
||
|
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ].
|
||
|
|
||
|
"Packages"
|
||
|
spec package: 'Brea' with: [ spec requires: #('NeoJSON') ].
|
||
|
]
|
||
|
]
|