-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaselineOfToploSerialization.class.st
More file actions
44 lines (36 loc) · 1.06 KB
/
BaselineOfToploSerialization.class.st
File metadata and controls
44 lines (36 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Class {
#name : #BaselineOfToploSerialization,
#superclass : #BaselineOf,
#category : #BaselineOfToploSerialization
}
{ #category : #baselines }
BaselineOfToploSerialization >> baseline: spec [
<baseline>
spec for: #common do: [ "dependencies"
self dependency: spec.
"project packages"
self dependency: spec.
"project packages"
spec package: 'Toplo-Serialization-STON'.
spec package: 'Toplo-Serialization-Stash'.
spec package: 'Toplo-Serialization' with: [
spec requires:
#( 'Toplo' 'BlocSerialization' 'Toplo-Serialization-STON'
'Toplo-Serialization-Stash' ) ].
spec
package: 'Toplo-Serialization-Tests'
with: [ spec requires: #( 'Toplo-Serialization' ) ] ]
]
{ #category : #baselines }
BaselineOfToploSerialization >> dependency: spec [
spec
baseline: #BlocSerialization
with: [
spec repository: 'github://OpenSmock/Bloc-Serialization:main/src' ].
spec
baseline: 'Toplo'
with: [ spec repository: 'github://OpenSmock/Toplo:dev/src' ].
spec
baseline: 'Album'
with: [ spec repository: 'github://OpenSmock/Album:master' ]
]