-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Deployment', | ||
#postloadDoitName : 'scripts/deploymentPostLoad', | ||
#projectNames : [ 'Kepler' ], | ||
#componentNames : [ ], | ||
#packageNames : [ | ||
'Sagan-Core', | ||
'Sagan-Extensions', | ||
'Sagan-Kepler' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Sagan-Core' : { 'symbolDictName' : 'Sagan' }, | ||
'Sagan-Extensions' : { 'symbolDictName' : 'Globals' }, | ||
'Sagan-Kepler' : { 'symbolDictName' : 'Sagan' } | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
RwSimpleProjectLoadComponentV2 { | ||
#name : 'Tests', | ||
#condition : 'tests', | ||
#componentNames : [ | ||
'Deployment' | ||
], | ||
#packageNames : [ | ||
'Sagan-Core-Tests', | ||
'Sagan-Kepler-Tests' | ||
], | ||
#conditionalPackageMapSpecs : { | ||
'gemstone' : { | ||
'allusers' : { | ||
#packageNameToPlatformPropertiesMap : { | ||
'Sagan-Core-Tests' : { 'symbolDictName' : 'Sagan' }, | ||
'Sagan-Kepler-Tests' : { 'symbolDictName' : 'Sagan' } | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
| symbolDictionary | | ||
|
||
symbolDictionary := Rowan image | ||
symbolDictNamed: 'Sagan' | ||
ifAbsent: [Error signal: 'Sagan symbol dictionary missing' ]. | ||
|
||
"Register Kepler's built-in system interfaces" | ||
(OrderedCollection new | ||
add: #RepositoryProviderSystem; | ||
yourself) | ||
do: [:each | (symbolDictionary at: each) registerInterfaces]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
RwProjectSpecificationV2 { | ||
#specName : 'project', | ||
#projectSpecPath : 'rowan', | ||
#componentsPath : 'rowan/components', | ||
#packagesPath : 'source', | ||
#projectsPath : 'rowan/projects', | ||
#specsPath : 'rowan/specs', | ||
#packageFormat : 'tonel', | ||
#packageConvention : 'Rowan', | ||
#comment : 'Sagan project specification' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Kepler', | ||
#projectName : 'Kepler', | ||
#gitUrl : 'https://github.com/ba-st/Kepler.git', | ||
#revision : 'v6', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Deployment' | ||
] | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Sagan-CI', | ||
#projectName : 'Sagan', | ||
#diskUrl : 'Sagan', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Tests' | ||
], | ||
#customConditionalAttributes : [ | ||
'sunit', | ||
'tests' | ||
], | ||
#comment : 'Sagan continuous integration setup' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
RwLoadSpecificationV2 { | ||
#specName: 'Sagan-Deployment', | ||
#projectName : 'Sagan', | ||
#diskUrl : 'Sagan', | ||
#projectSpecFile : 'rowan/project.ston', | ||
#componentNames : [ | ||
'Deployment' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
#convention : 'Rowan', | ||
#format : #tonel | ||
} |