Skip to content

Commit

Permalink
Merge 2189ee1
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Aug 8, 2023
2 parents c683fa7 + 2189ee1 commit cbaf50c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions rowan/components/Deployment.ston
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ RwSimpleProjectLoadComponentV2 {
'Buoy-Conditions-Extensions',
'Buoy-Dynamic-Binding',
'Buoy-Exception-Handling-Extensions',
'Buoy-Math',
'Buoy-Math-Extensions',
'Buoy-Math-GS64-Extensions',
'Buoy-Metaprogramming',
'Buoy-Metaprogramming-Extensions',
Expand Down Expand Up @@ -42,6 +44,9 @@ RwSimpleProjectLoadComponentV2 {
'Buoy-Exception-Handling-Extensions' : {
'symbolDictName' : 'Globals'
},
'Buoy-Math-Extensions' : {
'symbolDictName' : 'Globals'
},
'Buoy-Math-GS64-Extensions' : {
'symbolDictName' : 'Globals'
},
Expand Down
1 change: 1 addition & 0 deletions rowan/components/Tests.ston
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RwSimpleProjectLoadComponentV2 {
'Buoy-Conditions-Tests',
'Buoy-Dynamic-Binding-Tests',
'Buoy-Exception-Handling-Tests',
'Buoy-Math-Tests',
'Buoy-Metaprogramming-Tests',
'Buoy-SUnit-Tests'
],
Expand Down
6 changes: 3 additions & 3 deletions rowan/components/scripts/defineExceptionAliases.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
| symbolDictionary |
symbolDictionary := Rowan image
symbolDictNamed:'Buoy'
symbolDictNamed: 'Buoy'
ifAbsent: [
Rowan image symbolList createDictionaryNamed: 'Buoy' at: 1.
Rowan image symbolDictNamed:'Buoy'
Rowan image symbolDictNamed: 'Buoy'
].
symbolDictionary at: #SubscriptOutOfBounds put: OffsetError.
symbolDictionary at: #NotFound put: LookupError.

symbolDictionary at: #ArithmeticError put: NumericError.
4 changes: 3 additions & 1 deletion source/BaselineOfBuoy/BaselineOfBuoy.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ BaselineOfBuoy >> baselineMath: spec [
spec
package: 'Buoy-Math' with: [ spec requires: 'Buoy-Assertions' ];
group: 'Deployment' with: 'Buoy-Math';
package: 'Buoy-Math-Tests' with: [ spec requires: #('Buoy-Math' 'Dependent-SUnit-Extensions') ];
package: 'Buoy-Math-Extensions' with: [ spec requires: 'Buoy-Math' ];
group: 'Deployment' with: 'Buoy-Math-Extensions';
package: 'Buoy-Math-Tests' with: [ spec requires: #('Buoy-Math-Extensions' 'Dependent-SUnit-Extensions') ];
group: 'Tests' with: 'Buoy-Math-Tests'
]

Expand Down

0 comments on commit cbaf50c

Please sign in to comment.