X Tutup
Skip to content

Commit bd1f46b

Browse files
author
Johan Brichau
committed
Add pharo 11 to baseline (also cleanup code critics on baseline)
1 parent c5b7265 commit bd1f46b

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselinePharo..st

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
baselines
22
baselinePharo: spec
3-
3+
44
spec
55
for: #'pharo6.x'
66
do: [ spec
@@ -25,7 +25,7 @@ baselinePharo: spec
2525

2626
spec
2727
for: #(#'pharo6.x' #'pharo7.x' #'pharo8.x')
28-
do: [
28+
do: [
2929
spec
3030
package: 'Grease-Pharo40-Slime' with: [ spec requires: #('Grease-Core') ];
3131
package: 'Grease-Tests-Slime' with: [ spec requires: #('Grease-Pharo40-Slime') ].
@@ -35,7 +35,7 @@ baselinePharo: spec
3535

3636
spec
3737
for: #(#'pharo9.x')
38-
do: [
38+
do: [
3939
spec
4040
package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo90-Core') ];
4141
package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ];
@@ -50,10 +50,10 @@ baselinePharo: spec
5050
spec
5151
group: 'Slime' with: #('Grease-Pharo90-Slime');
5252
group: 'Slime Tests' with: #('Grease-Tests-Slime') ].
53-
53+
5454
spec
55-
for: #(#'pharo10.x')
56-
do: [
55+
for: #(#'pharo10.x' #'pharo11.x')
56+
do: [
5757
spec
5858
package: 'Grease-Core' with: [ spec includes: #('Grease-Pharo100-Core') ];
5959
package: 'Grease-Tests-Pharo-Core' with: [ spec requires: #('Grease-Tests-Core') ];
@@ -67,4 +67,4 @@ baselinePharo: spec
6767

6868
spec
6969
group: 'Slime' with: #('Grease-Pharo90-Slime');
70-
group: 'Slime Tests' with: #('Grease-Tests-Slime') ].
70+
group: 'Slime Tests' with: #('Grease-Tests-Slime') ]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please describe the package using the class comment of the included manifest class. The manifest class also includes other additional metadata for the package. These meta data are used by other tools such as the SmalllintManifestChecker and the critics Browser
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
code-critics
2+
ruleLongMethodsRuleV1FalsePositive
3+
^ #(#(#(#RGPackageDefinition #(#BaselineOfGrease)) #'2023-01-21T15:31:09.186258+01:00') )
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"commentStamp" : "<historical>",
3+
"super" : "PackageManifest",
4+
"category" : "BaselineOfGrease-Manifest",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
8+
"instvars" : [ ],
9+
"name" : "ManifestBaselineOfGrease",
10+
"type" : "normal"
11+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
SystemOrganization addCategory: #BaselineOfGrease!
2+
SystemOrganization addCategory: #'BaselineOfGrease-Manifest'!

0 commit comments

Comments
 (0)
X Tutup