Skip to content

Commit 1d073ef

Browse files
authored
Merge pull request #123 from ba-st/fix_tonelwriterextension
Fix loading warnings due to TonelWriterV3 extensions
2 parents 29407b0 + 9a499c6 commit 1d073ef

File tree

8 files changed

+20
-7
lines changed

8 files changed

+20
-7
lines changed

.smalltalkci/.loading.dependent-sunit-extensions.ston

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ SmalltalkCISpec {
44
#baseline : 'Buoy',
55
#directory : '../source',
66
#load : [ 'Dependent-SUnit-Extensions' ],
7-
#platforms : [ #pharo ]
7+
#platforms : [ #pharo ],
8+
#failOn : [ #Warning ]
89
}
910
],
1011
#testing : {

.smalltalkci/.loading.deployment.ston

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ SmalltalkCISpec {
44
#baseline : 'Buoy',
55
#directory : '../source',
66
#load : [ 'Deployment' ],
7-
#platforms : [ #pharo ]
7+
#platforms : [ #pharo ],
8+
#failOn : [ #Warning ]
89
}
910
],
1011
#testing : {

.smalltalkci/.loading.development.ston

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ SmalltalkCISpec {
44
#baseline : 'Buoy',
55
#directory : '../source',
66
#load : [ 'Development' ],
7-
#platforms : [ #pharo ]
7+
#platforms : [ #pharo ],
8+
#failOn : [ #Warning ]
89
}
910
],
1011
#testing : {

.smalltalkci/.loading.tests.ston

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ SmalltalkCISpec {
44
#baseline : 'Buoy',
55
#directory : '../source',
66
#load : [ 'Tests' ],
7-
#platforms : [ #pharo ]
7+
#platforms : [ #pharo ],
8+
#failOn : [ #Warning ]
89
}
910
],
1011
#testing : {

.smalltalkci/.loading.tools.ston

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ SmalltalkCISpec {
44
#baseline : 'Buoy',
55
#directory : '../source',
66
#load : [ 'Tools' ],
7-
#platforms : [ #pharo ]
7+
#platforms : [ #pharo ],
8+
#failOn : [ #Warning ]
89
}
910
],
1011
#testing : {

source/BaselineOfBuoy/BaselineOfBuoy.class.st

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@ BaselineOfBuoy >> baseline: spec [
3030
group: 'CI' with: 'Tests';
3131
group: 'Development' with: #('Tools' 'Tests');
3232
group: 'default' with: 'Development'
33-
]
33+
].
34+
spec for: #'pharo12.x' do: [
35+
spec
36+
package: 'Buoy-Development-Tools-Pharo-12'
37+
with: [ spec requires: 'Buoy-Development-Tools' ];
38+
group: 'Tools' with: 'Buoy-Development-Tools-Pharo-12'
39+
]
40+
3441
]
3542

3643
{ #category : #baselines }

source/Buoy-Development-Tools/TonelWriterV3.extension.st renamed to source/Buoy-Development-Tools-Pharo-12/TonelWriterV3.extension.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Extension { #name : 'TonelWriterV3' }
22

3-
{ #category : '*Buoy-Development-Tools' }
3+
{ #category : '*Buoy-Development-Tools-Pharo-12' }
44
TonelWriterV3 >> typeClassDefinitionOf: aClassDefinition [
55

66
| definition |
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : 'Buoy-Development-Tools-Pharo-12' }

0 commit comments

Comments
 (0)