Skip to content

Commit

Permalink
Renamed package and updated Rowan specs to compile class in the "Glob…
Browse files Browse the repository at this point in the history
…als" namespace
  • Loading branch information
ytsejam78 committed Aug 7, 2023
1 parent d9f023c commit 41e849d
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 10 deletions.
5 changes: 4 additions & 1 deletion rowan/components/Deployment.ston
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RwSimpleProjectLoadComponentV2 {
'Buoy-Collections-GS64-Extensions',
'Buoy-Conditions-Extensions',
'Buoy-Conditions',
'Buoy-Exception-Handling',
'Buoy-Exception-Handling-Extensions',
'Buoy-Metaprogramming-Extensions',
'Buoy-Metaprogramming-GS64-Extensions'
],
Expand All @@ -25,6 +25,9 @@ RwSimpleProjectLoadComponentV2 {
'Buoy-Conditions-Extensions' : {
'symbolDictName' : 'Globals'
},
'Buoy-Exception-Handling-Extensions' : {
'symbolDictName' : 'Globals'
},
'Buoy-Metaprogramming-Extensions' : {
'symbolDictName' : 'Globals'
},
Expand Down
2 changes: 1 addition & 1 deletion rowan/components/Tests.ston
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RwSimpleProjectLoadComponentV2 {
#packageNames : [
'Buoy-Assertions-Tests',
'Buoy-Conditions-Tests',
'Buoy-Exception-Handling-Tests',
'Buoy-Exception-Handling-Extensions-Tests',
'Buoy-SUnit-Tests'
],
#comment : ''
Expand Down
8 changes: 4 additions & 4 deletions source/BaselineOfBuoy/BaselineOfBuoy.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ BaselineOfBuoy >> baselineDynamicBinding: spec [
BaselineOfBuoy >> baselineExceptionHandling: spec [

spec
package: 'Buoy-Exception-Handling';
group: 'Deployment' with: 'Buoy-Exception-Handling';
package: 'Buoy-Exception-Handling-Tests' with: [ spec requires: 'Buoy-Exception-Handling' ];
group: 'Tests' with: 'Buoy-Exception-Handling-Tests'
package: 'Buoy-Exception-Handling-Extensions';
group: 'Deployment' with: 'Buoy-Exception-Handling-Extensions';
package: 'Buoy-Exception-Handling-Extensions-Tests' with: [ spec requires: 'Buoy-Exception-Handling-Extensions' ];
group: 'Tests' with: 'Buoy-Exception-Handling-Extensions-Tests'
]

{ #category : #baselines }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ I'm a test case for the exception handling system.
Class {
#name : #ExceptionHandlingSystemTest,
#superclass : #TestCase,
#category : #'Buoy-Exception-Handling-Tests'
#category : #'Buoy-Exception-Handling-Extensions-Tests'
}

{ #category : #private }
Expand Down
1 change: 1 addition & 0 deletions source/Buoy-Exception-Handling-Extensions-Tests/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #'Buoy-Exception-Handling-Extensions-Tests' }
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #BlockClosure }

{ #category : #'*Buoy-Exception-Handling' }
{ #category : #'*Buoy-Exception-Handling-Extensions' }
BlockClosure >> on: selector except: exclusionSelector do: action [

^ self
Expand Down
1 change: 1 addition & 0 deletions source/Buoy-Exception-Handling-Extensions/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #'Buoy-Exception-Handling-Extensions' }
1 change: 0 additions & 1 deletion source/Buoy-Exception-Handling-Tests/package.st

This file was deleted.

1 change: 0 additions & 1 deletion source/Buoy-Exception-Handling/package.st

This file was deleted.

0 comments on commit 41e849d

Please sign in to comment.