-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathBaselineOfDataFrame.class.st
More file actions
41 lines (37 loc) · 1.04 KB
/
BaselineOfDataFrame.class.st
File metadata and controls
41 lines (37 loc) · 1.04 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
Class {
#name : #BaselineOfDataFrame,
#superclass : #BaselineOf,
#category : #BaselineOfDataFrame
}
{ #category : #baselines }
BaselineOfDataFrame >> baseline: spec [
<baseline>
spec for: #common do: [
"External dependencies"
spec
baseline: 'NeoCSV'
with: [ spec repository: 'github://svenvc/NeoCSV/repository' ].
spec
baseline: 'NeoJSON'
with: [ spec repository: 'github://svenvc/NeoJSON/repository' ].
spec
baseline: 'AINormalization'
with: [ spec repository: 'github://pharo-ai/normalization/src' ].
"Packages"
spec
package: 'DataFrame' with: [ spec requires: #('AINormalization') ];
package: 'DataFrame-Tests' with: [ spec requires: #('DataFrame') ];
package: 'DataFrame-IO' with: [ spec requires: #('DataFrame' 'NeoCSV' 'NeoJSON') ];
package: 'DataFrame-IO-Tests' with: [ spec requires: #('DataFrame-IO') ] ].
spec
for: #'pharo7.x'
do: [
spec
package: 'DataFrame-Pharo67' ].
spec
for: #'pharo6.x'
do: [
spec
package: 'DataFrame-Pharo6';
package: 'DataFrame-Pharo67' ]
]