Skip to content

Commit

Permalink
Change toplo branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Laborde committed Jul 18, 2024
1 parent 974a5fc commit b51d3e4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 17 deletions.
37 changes: 21 additions & 16 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,53 @@ 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' ) ].

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 +90,36 @@ BaselineOfPyramid >> pyramidPackages: spec [

]

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

spec
baseline: 'Toplo'
with: [ spec repository: 'github://pharo-graphics/Toplo:master/src' ].
with: [ spec repository: 'github://pharo-graphics/Toplo:dev/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') ].

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 }

0 comments on commit b51d3e4

Please sign in to comment.