File tree Expand file tree Collapse file tree 1 file changed +25
-8
lines changed
Expand file tree Collapse file tree 1 file changed +25
-8
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,29 @@ Class {
99BaselineOfFamixDiff >> baseline: spec [
1010
1111 < baseline>
12- spec for: #common do: [
13- spec
14- package: ' Famix-Diff-ChangeModel' ;
15- package: ' Famix-Diff-Core' with: [ spec requires: #( 'Famix-Diff-ChangeModel' ) ];
16- package: ' Famix-Diff-Core-Tests' with: [ spec requires: #( 'Famix-Diff-Core' ) ].
17- spec
18- group: ' core' with: #( 'Famix-Diff-Core' 'Famix-Diff-ChangeModel' ) ;
19- group: ' core-tests' with: #( 'core' 'Famix-Diff-Core-Tests' ) ]
12+ spec for: #common do: [
13+ spec
14+ package: ' Famix-Diff-ChangeModel' ;
15+ package: ' Famix-Diff-Core' with: [ spec requires: #( 'Famix-Diff-ChangeModel' ) ];
16+ package: ' Famix-Diff-Core-Tests' with: [ spec requires: #( 'Famix-Diff-Core' ) ].
17+ spec
18+ group: ' core' with: #( 'Famix-Diff-Core' 'Famix-Diff-ChangeModel' ) ;
19+ group: ' core-tests' with: #( 'core' 'Famix-Diff-Core-Tests' ) ].
20+
21+ spec for: #NoFamix do: [
22+ self famix: spec.
23+ spec package: ' Famix-Diff-Core' with: [ spec requires: #( 'Famix' ) ] ]
24+ ]
25+
26+ { #category : ' accessing' }
27+ BaselineOfFamixDiff >> customProjectAttributes [
28+
29+ ' BaselineOfFamix' asPackageIfAbsent: [ ^ #( #NeedsFamix ) ].
30+ ^ #( )
31+ ]
32+
33+ { #category : ' dependencies' }
34+ BaselineOfFamixDiff >> famix: spec [
35+
36+ spec baseline: ' Famix' with: [ spec repository: ' github://moosetechnology/Famix:development/src' ]
2037]
You can’t perform that action at this time.
0 commit comments