Skip to content

Commit

Permalink
Baseline and package renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Nov 10, 2024
1 parent 62f2069 commit 2eefa1d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions repository/BaselineOfOpenPonk/BaselineOfOpenPonk.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,20 @@ BaselineOfOpenPonk >> externalProjectsBaseline: spec [
spec
baseline: 'RoassalExporters'
with: [
spec repository: 'github://pharo-graphics/RoassalExporters:v1.02' ]
spec repository: 'github://pharo-graphics/RoassalExporters:v1.02' ].

spec baseline: 'NewTools' with: [
spec
repository: 'github://pharo-spec/NewTools:Pharo12';
loads: #( FileBrowser ) ]
]

{ #category : 'baselines' }
BaselineOfOpenPonk >> internalProjectsBaseline: spec [

spec baseline: 'NewTools' with: [
spec
repository: 'github://pharo-spec/NewTools:Pharo12';
loads: #( FileBrowser ) ].
spec
baseline: 'SynchronizedLinks'
with: [
spec repository: 'github://openponk/synchronized-links' ]
with: [ spec repository: 'github://openponk/synchronized-links' ]
]

{ #category : 'baselines' }
Expand Down
10 changes: 5 additions & 5 deletions repository/OpenPonk-Core/OPVersion.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -335,17 +335,17 @@ OPVersion >> repositoryName [
| activePlugins |
activePlugins := {
((Smalltalk globals includesKey:
#BaselineOfClassEditor) ifTrue: [
#BaselineOfOpenPonkClassEditor) ifTrue: [
#'class-editor' ]).
((Smalltalk globals includesKey:
#BaselineOfBormEditor) ifTrue: [
#BaselineOfOpenPonkBormEditor) ifTrue: [
#'borm-editor' ]).
((Smalltalk globals includesKey:
#BaselineOfFsmEditor) ifTrue: [
#BaselineOfOpenPonkFsmEditor) ifTrue: [
#'fsm-editor' ]).
((Smalltalk globals includesKey:
#BaselineOfPetriNets) ifTrue: [ #petrinets ]).
((Smalltalk globals includesKey: #BaselineOfBPMN)
#BaselineOfOpenPonkPetriNets) ifTrue: [ #petrinets ]).
((Smalltalk globals includesKey: #BaselineOfOpenPonkBPMN)
ifTrue: [ #'BPMN' ]) } reject: #isNil.
repositoryName := activePlugins size >= 4
ifTrue: [ #plugins ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ OPRSDependenciesMapBuilder >> computeModels [

| verResults |
verResults := Smalltalk globals
at: #BaselineOfOntoUMLVerificationFramework
at: #BaselineOfOpenPonkOntoUMLVerifications
ifAbsent: [ ^ super computeModels ].
[
Smalltalk globals removeKey: #BaselineOfOntoUMLVerificationFramework.
Smalltalk globals removeKey: #BaselineOfOpenPonkOntoUMLVerifications.
super computeModels ] ensure: [
Smalltalk globals at: #BaselineOfOntoUMLVerificationFramework put: verResults ]
Smalltalk globals at: #BaselineOfOpenPonkOntoUMLVerifications put: verResults ]
]

{ #category : 'hooks - model' }
Expand Down

0 comments on commit 2eefa1d

Please sign in to comment.