forked from svenvc/NeoJSON
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbaseline..st
More file actions
35 lines (35 loc) · 1.42 KB
/
baseline..st
File metadata and controls
35 lines (35 loc) · 1.42 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
baselines
baseline: spec
<baseline>
spec
for: #common
do: [ spec
package: 'Neo-JSON-Core';
package: 'Neo-JSON-Tests' with: [ spec requires: #('Neo-JSON-Core') ];
group: 'default' with: #('Core' 'Tests');
group: 'Core' with: #('Neo-JSON-Core');
group: 'Tests' with: #('Neo-JSON-Tests') ].
spec
for: #pharo
do: [ spec
package: 'Neo-JSON-Pharo-Core' with: [ spec requires: #('Neo-JSON-Core') ];
package: 'Neo-JSON-Pharo-Tests' with: [ spec requires: #('Neo-JSON-Tests') ];
package: 'Neo-JSON-Pharo-Examples' with: [ spec requires: #('Neo-JSON-Core') ];
group: 'Core' with: #('Neo-JSON-Core' 'Neo-JSON-Pharo-Core');
group: 'Tests' with: #('Neo-JSON-Tests' 'Neo-JSON-Pharo-Tests');
group: 'Examples' with: #('Neo-JSON-Pharo-Examples') ].
spec
for: #gemstone
do: [
spec
baseline: 'OrderedDictionary'
with: [ spec
loads: #('Core');
repository: 'github://GsDevKit/OrderedDictionary:master/repository' ].
spec
package: 'Neo-JSON-GemStone-Core' with: [ spec requires: #('Neo-JSON-Core') ];
package: 'Neo-JSON-GemStone-Tests' with: [ spec requires: #('Neo-JSON-Tests') ];
package: 'Neo-JSON-GemStone-Examples' with: [ spec requires: #('Neo-JSON-Core') ];
group: 'Core' with: #('Neo-JSON-Core' 'Neo-JSON-GemStone-Core');
group: 'Tests' with: #('Neo-JSON-Tests' 'Neo-JSON-GemStone-Tests');
group: 'Examples' with: #('Neo-JSON-GemStone-Examples') ].