Skip to content

Commit

Permalink
Fix baseline and rowan spec
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Aug 31, 2023
1 parent a92ea94 commit e374de4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/reference/Baseline-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ loading targets:

## GS64 Components

Hyperspace includes the following components in its Rowan configuration that can be
used as loading targets:
Hyperspace includes the following components in its Rowan configuration that
can be used as loading targets:

- `Deployment` will load all the packages needed in a deployed application
- `Tests` will load the test cases
Expand Down
2 changes: 1 addition & 1 deletion rowan/components/Deployment.ston
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RwSimpleProjectLoadComponentV2 {
#packageNames : [
'Hyperspace-Model',
'Hyperspace-Extensions',
'Hyperspace-GS64-Extensions',
'Hyperspace-GS64-Extensions'
],
#conditionalPackageMapSpecs : {
'gemstone' : {
Expand Down
25 changes: 17 additions & 8 deletions source/BaselineOfHyperspace/BaselineOfHyperspace.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,29 @@ BaselineOfHyperspace >> setUpDependencies: spec [
BaselineOfHyperspace >> setUpPackages: spec [

spec
package: 'Hyperspace-Model' with: [ spec requires: #('Buoy-Deployment' 'Zinc-Core')];
package: 'Hyperspace-Model'
with: [ spec requires: #( 'Buoy-Deployment' 'Zinc-Core' ) ];
group: 'Deployment' with: 'Hyperspace-Model';
package: 'Hyperspace-Extensions' with: [ spec requires: 'Hyperspace-Model'];
package: 'Hyperspace-Extensions'
with: [ spec requires: 'Hyperspace-Model' ];
group: 'Deployment' with: 'Hyperspace-Extensions';
package: 'Hyperspace-Pharo-Extensions' with: [ spec requires: 'Hyperspace-Model'];
group: 'Deployment' with: 'Hyperspace-Pharo-Extensions';
package: 'Hyperspace-Model-Tests'
with: [ spec requires: #( 'Hyperspace-Model' 'Dependent-SUnit-Extensions' ) ];
package: 'Hyperspace-Pharo-Extensions'
with: [ spec requires: 'Hyperspace-Model' ];
group: 'Deployment' with: 'Hyperspace-Pharo-Extensions'.

spec
package: 'Hyperspace-Model-Tests' with: [
spec requires:
#( 'Hyperspace-Model' 'Hyperspace-Extensions'
'Hyperspace-Pharo-Extensions' 'Dependent-SUnit-Extensions' ) ];
group: 'Tests' with: 'Hyperspace-Model-Tests'.

spec
package: 'Hyperspace-SUnit-Model' with: [ spec requires: 'Buoy-SUnit' ];
package: 'Hyperspace-SUnit-Model'
with: [ spec requires: 'Buoy-SUnit' ];
group: 'Dependent-SUnit-Extensions' with: 'Hyperspace-SUnit-Model';
package: 'Hyperspace-SUnit-Model-Tests' with: [ spec requires: 'Hyperspace-SUnit-Model' ];
package: 'Hyperspace-SUnit-Model-Tests'
with: [ spec requires: 'Hyperspace-SUnit-Model' ];
group: 'Tests' with: 'Hyperspace-SUnit-Model-Tests'.

spec group: 'Tools' with: 'Buoy-Tools'
Expand Down

0 comments on commit e374de4

Please sign in to comment.