-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaselineOfFASTPython.class.st
More file actions
54 lines (46 loc) · 1.63 KB
/
BaselineOfFASTPython.class.st
File metadata and controls
54 lines (46 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
"
I am a baseline to define the structure and dependencies of the FASTPython project.
"
Class {
#name : 'BaselineOfFASTPython',
#superclass : 'BaselineOf',
#category : 'BaselineOfFASTPython',
#package : 'BaselineOfFASTPython'
}
{ #category : 'baselines' }
BaselineOfFASTPython >> baseline: spec [
<baseline>
spec for: #common do: [ "Dependencies"
self
fast: spec;
treeSitter: spec.
"Packages"
spec
package: 'FAST-Python-Model' with: [ spec requires: #( 'FAST' 'TreeSitter' ) ];
package: 'FAST-Python-Model-Generator';
package: 'FAST-Python-Model-Tests' with: [ spec requires: #( 'FAST-Python-Model' ) ];
package: 'FAST-Python-Tools' with: [ spec requires: #( 'FAST-Python-Model' 'FAST-Python-Visitor' ) ];
package: 'FAST-Python-Tools-Tests' with: [ spec requires: #( 'FAST-Python-Tools' ) ];
package: 'FAST-Python-Visitor' with: [ spec requires: #( 'FAST-Python-Model' ) ].
"Groups"
spec
group: 'Core' with: #( 'FAST-Python-Model' 'FAST-Python-Tools' 'FAST-Python-Visitor' );
group: 'Generator' with: #( 'FAST-Python-Model-Generator' );
group: 'Tests' with: #( 'FAST-Python-Model-Tests' 'FAST-Python-Tools-Tests' ) ]
]
{ #category : 'dependencies' }
BaselineOfFASTPython >> fast: spec [
spec baseline: 'FAST' with: [
spec
loads: #( 'All' );
repository: 'github://moosetechnology/FAST:v3/src' ]
]
{ #category : 'accessing' }
BaselineOfFASTPython >> projectClass [
^ MetacelloCypressBaselineProject
]
{ #category : 'dependencies' }
BaselineOfFASTPython >> treeSitter: spec [
spec
baseline: 'TreeSitter' with: [ spec repository: 'github://Evref-BL/Pharo-Tree-Sitter:main/src' ]
]