Skip to content

Commit c881227

Browse files
committed
Keep old besaline as deprecated
1 parent 7702fae commit c881227

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
"
2+
Description
3+
--------------------
4+
5+
One line summary. For example, ""I represent a paragraph of text"".
6+
7+
Three sentences about my main responsibilities - what I do, what I know.
8+
9+
State my main collaborators and one line about how I interact with them.
10+
11+
Public API and Key Messages
12+
--------------------
13+
14+
- #
15+
- #
16+
- #
17+
18+
Examples
19+
--------------------
20+
21+
22+
23+
Internal Representation and Key Implementation Points.
24+
--------------------
25+
26+
"
27+
Class {
28+
#name : #BaselineOfPolyMathDataStructures,
29+
#superclass : #BaselineOf,
30+
#category : #BaselineOfPolyMathDataStructures
31+
}
32+
33+
{ #category : #testing }
34+
BaselineOfPolyMathDataStructures class >> isDeprecated [
35+
^ true
36+
]
37+
38+
{ #category : #baselines }
39+
BaselineOfPolyMathDataStructures >> baseline: spec [
40+
41+
<baseline>
42+
spec for: #common do: [ "Packages"
43+
spec
44+
package: 'Math-Vector';
45+
package: 'Math-Matrix' with: [ spec requires: #( 'Math-Vector' ) ];
46+
package: 'Math-Vector-Tests' with: [ spec requires: #( 'Math-Vector' ) ];
47+
package: 'Math-Matrix-Tests' with: [ spec requires: #( 'Math-Matrix' ) ].
48+
49+
spec
50+
group: 'Core' with: #( 'Math-Vector' 'Math-Matrix' );
51+
group: 'Tests' with: #( 'Math-Vector-Tests' 'Math-Matrix-Tests' ) ].
52+
53+
spec for: #( #'pharo9.x' #'pharo10.x' ) do: [
54+
spec
55+
package: 'Math-Matrix' with: [ spec requires: #( 'Math-DataStructures-Pharo11' ) ];
56+
package: 'Math-DataStructures-Pharo11' ]
57+
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
"
2+
Please comment package here
3+
"
4+
Class {
5+
#name : #ManifestBaselineOfPolyMathDataStructures,
6+
#superclass : #PackageManifest,
7+
#category : #'BaselineOfPolyMathDataStructures-Manifest'
8+
}
9+
10+
{ #category : #testing }
11+
ManifestBaselineOfPolyMathDataStructures class >> isDeprecated [
12+
13+
^ true
14+
]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #BaselineOfPolyMathDataStructures }

0 commit comments

Comments
 (0)