Skip to content

Commit

Permalink
Merge 9d050db
Browse files Browse the repository at this point in the history
  • Loading branch information
mreyes committed Jul 1, 2024
2 parents 64c1ca7 + 9d050db commit 808462f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 29 deletions.
5 changes: 1 addition & 4 deletions rowan/components/Dependent-SUnit-Extensions.ston
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
RwSimpleProjectLoadComponentV2 {
#name : 'Dependent-SUnit-Extensions',
#condition : 'sunit',
#projectNames : [
'Bell',
'Regex'
],
#projectNames : [ ],
#componentNames : [
'Deployment'
],
Expand Down
2 changes: 1 addition & 1 deletion rowan/projects/Bell.ston
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ RwLoadSpecificationV2 {
#specName: 'Bell',
#projectName : 'Bell',
#gitUrl : 'https://github.com/ba-st/Bell.git',
#revision : 'regex-support',
#revision : 'v2',
#projectSpecFile : 'rowan/project.ston',
#componentNames : [
'Deployment',
Expand Down
10 changes: 0 additions & 10 deletions rowan/projects/Regex.ston

This file was deleted.

28 changes: 14 additions & 14 deletions source/BaselineOfHyperspace/BaselineOfHyperspace.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #BaselineOfHyperspace,
#superclass : #BaselineOf,
#category : #BaselineOfHyperspace
#category : 'BaselineOfHyperspace'
}

{ #category : #baselines }
Expand Down Expand Up @@ -36,19 +36,19 @@ BaselineOfHyperspace >> projectClass [
{ #category : #initialization }
BaselineOfHyperspace >> setUpDependencies: spec [

spec
baseline: 'Buoy' with: [ spec repository: 'github://ba-st/Buoy:v7' ];
project: 'Buoy-Deployment' copyFrom: 'Buoy' with: [ spec loads: 'Deployment' ];
project: 'Buoy-SUnit' copyFrom: 'Buoy' with: [ spec loads: 'Dependent-SUnit-Extensions' ];
project: 'Buoy-Tools' copyFrom: 'Buoy' with: [ spec loads: 'Tools' ].
spec
baseline: 'ZincHTTPComponents' with: [ spec repository: 'github://svenvc/zinc' ];
project: 'Zinc-Core' copyFrom: 'ZincHTTPComponents' with: [ spec loads: 'Core' ].

spec
baseline: 'Bell' with: [ spec repository: 'github://ba-st/Bell:regex-support' ];
project: 'Bell-Deployment' copyFrom: 'Bell' with: [ spec loads: 'Deployment' ];
project: 'Bell-SUnit' copyFrom: 'Bell' with: [ spec loads: 'Dependent-SUnit-Extensions' ]
spec
baseline: 'Buoy' with: [ spec repository: 'github://ba-st/Buoy:v7' ];
project: 'Buoy-Deployment' copyFrom: 'Buoy' with: [ spec loads: 'Deployment' ];
project: 'Buoy-SUnit' copyFrom: 'Buoy' with: [ spec loads: 'Dependent-SUnit-Extensions' ];
project: 'Buoy-Tools' copyFrom: 'Buoy' with: [ spec loads: 'Tools' ].
spec
baseline: 'ZincHTTPComponents' with: [ spec repository: 'github://svenvc/zinc' ];
project: 'Zinc-Core' copyFrom: 'ZincHTTPComponents' with: [ spec loads: 'Core' ].

spec
baseline: 'Bell' with: [ spec repository: 'github://ba-st/Bell:v2' ];
project: 'Bell-Deployment' copyFrom: 'Bell' with: [ spec loads: 'Deployment' ];
project: 'Bell-SUnit' copyFrom: 'Bell' with: [ spec loads: 'Dependent-SUnit-Extensions' ]
]

{ #category : #initialization }
Expand Down

0 comments on commit 808462f

Please sign in to comment.