Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change toplo branch #195

Merged
merged 4 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 22 additions & 25 deletions src/BaselineOfPyramid/BaselineOfPyramid.class.st
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
Class {
#name : 'BaselineOfPyramid',
#superclass : 'BaselineOf',
#category : 'BaselineOfPyramid',
#package : 'BaselineOfPyramid'
#name : #BaselineOfPyramid,
#superclass : #BaselineOf,
#category : #BaselineOfPyramid
}

{ #category : 'baselines' }
{ #category : #baselines }
BaselineOfPyramid >> baseline: spec [

<baseline>
"Common baseline for all Pharo versions"
spec for: #common do: [ self baselineForCommon: spec ]
]

{ #category : 'baselines' }
{ #category : #baselines }
BaselineOfPyramid >> baselineForCommon: spec [

<baseline>
Expand All @@ -35,50 +34,49 @@ BaselineOfPyramid >> baselineForCommon: spec [
spec group: 'ToploUI' with: self toploPackagesNames "only Bloc and Toplo"
]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPyramid >> blocDependencies: spec [

spec
baseline: 'Bloc'
with: [ spec repository: 'github://pharo-graphics/Bloc:master/src' ].

spec
baseline: 'BlocSerialization'
with: [
spec repository: 'github://OpenSmock/Bloc-Serialization:main/src' ]
]

{ #category : 'packages' }
{ #category : #packages }
BaselineOfPyramid >> blocPackages: spec [

spec
package: 'Pyramid-Bloc'
with: [ spec requires: #( 'Pyramid' 'Bloc' ) ].
with: [ spec requires: #( 'Pyramid' ) ].

spec
package: 'Pyramid-Tests'
with: [ spec requires: #( 'Pyramid-Bloc' ) ].

spec
package: 'Pyramid-Examples'
with: [ spec requires: #( 'Pyramid-Bloc' ) ]
]

{ #category : 'packages' }
{ #category : #packages }
BaselineOfPyramid >> blocPackagesNames [

^ #( 'Pyramid' 'Pyramid-Bloc' 'Pyramid-Tests' 'Pyramid-IDE' 'Pyramid-Examples' )
]

{ #category : 'actions' }
{ #category : #actions }
BaselineOfPyramid >> postload: loader package: packageSpec [

PyramidPluginManager reset
]

{ #category : 'actions' }
{ #category : #actions }
BaselineOfPyramid >> preload: loader package: packageSpec [

]

{ #category : 'packages' }
{ #category : #packages }
BaselineOfPyramid >> pyramidPackages: spec [

spec package: 'Pyramid'.
Expand All @@ -88,33 +86,32 @@ BaselineOfPyramid >> pyramidPackages: spec [

]

{ #category : 'dependencies' }
{ #category : #dependencies }
BaselineOfPyramid >> toploDependencies: spec [

spec
baseline: 'Toplo'
with: [ spec repository: 'github://pharo-graphics/Toplo:master/src' ].

spec
baseline: 'ToploSerialization'
with: [
spec repository: 'github://OpenSmock/Toplo-Serialization:main/src' ]
]

{ #category : 'packages' }
{ #category : #packages }
BaselineOfPyramid >> toploPackages: spec [

spec
package: 'Pyramid-Toplo'
with: [ spec requires: #( 'Toplo' 'ToploSerialization') ].
with: [ spec requires: #( 'ToploSerialization') ].

spec
package: 'Pyramid-Toplo-Tests'
with: [ spec requires: #( 'Pyramid-Toplo' ) ].

spec
package: 'Pyramid-Toplo-Examples'
with: [ spec requires: #( 'Pyramid-Toplo' ) ]
]

{ #category : 'packages' }
{ #category : #packages }
BaselineOfPyramid >> toploPackagesNames [

| packages |
Expand Down
2 changes: 1 addition & 1 deletion src/BaselineOfPyramid/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : 'BaselineOfPyramid' }
Package { #name : #BaselineOfPyramid }
Loading