Skip to content

Commit

Permalink
Merge pull request #123 from ba-st/fix_tonelwriterextension
Browse files Browse the repository at this point in the history
Fix loading warnings due to TonelWriterV3 extensions
  • Loading branch information
gcotelli authored Apr 10, 2024
2 parents 29407b0 + 9a499c6 commit 1d073ef
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .smalltalkci/.loading.dependent-sunit-extensions.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Buoy',
#directory : '../source',
#load : [ 'Dependent-SUnit-Extensions' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/.loading.deployment.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Buoy',
#directory : '../source',
#load : [ 'Deployment' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/.loading.development.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Buoy',
#directory : '../source',
#load : [ 'Development' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/.loading.tests.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Buoy',
#directory : '../source',
#load : [ 'Tests' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
3 changes: 2 additions & 1 deletion .smalltalkci/.loading.tools.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ SmalltalkCISpec {
#baseline : 'Buoy',
#directory : '../source',
#load : [ 'Tools' ],
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#failOn : [ #Warning ]
}
],
#testing : {
Expand Down
9 changes: 8 additions & 1 deletion source/BaselineOfBuoy/BaselineOfBuoy.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ BaselineOfBuoy >> baseline: spec [
group: 'CI' with: 'Tests';
group: 'Development' with: #('Tools' 'Tests');
group: 'default' with: 'Development'
]
].
spec for: #'pharo12.x' do: [
spec
package: 'Buoy-Development-Tools-Pharo-12'
with: [ spec requires: 'Buoy-Development-Tools' ];
group: 'Tools' with: 'Buoy-Development-Tools-Pharo-12'
]

]

{ #category : #baselines }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : 'TonelWriterV3' }

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

| definition |
Expand Down
1 change: 1 addition & 0 deletions source/Buoy-Development-Tools-Pharo-12/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : 'Buoy-Development-Tools-Pharo-12' }

0 comments on commit 1d073ef

Please sign in to comment.