Installation via baselines.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2020-07-25 13:04:11 -05:00
parent 9e588bf102
commit c36f8c9539
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,25 @@
"
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') ].
]
]

View File

@ -0,0 +1 @@
Package { #name : #BaselineOfBrea }