Skip to content

Commit

Permalink
switched to new Roassal repository
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 25, 2023
1 parent c203ac6 commit 9da7b4f
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions repository/BaselineOfOpenPonk/BaselineOfOpenPonk.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -100,22 +100,33 @@ BaselineOfOpenPonk >> loadPetitParserAndRoassal3 [
BaselineOfOpenPonk >> loadRoassal3 [
"Roassal3 needs to be loaded this way because different version of it is already included in Pharo 10+"

| exporters |
Smalltalk at: #BaselineOfRoassal3Exporters ifPresent: [ ^ self ].
| exporters layouts |

Smalltalk at: #BaselineOfRoassalExporters ifPresent: [ ^ self ].

layouts := Metacello new.
layouts
baseline: 'RoassalLayouts';
repository: 'github://pharo-graphics/RoassalLayouts:136a902';
lock;
onConflictUseLoaded.

exporters := Metacello new.
exporters
baseline: 'Roassal3Exporters';
repository: 'github://ObjectProfile/Roassal3Exporters:6c61b1f';
baseline: 'RoassalExporters';
repository: 'github://pharo-graphics/RoassalExporters:v1.01';
lock;
onConflictUseLoaded.

[
Metacello new
baseline: 'Roassal3';
repository: 'github://ObjectProfile/Roassal3:v1.03';
baseline: 'Roassal';
repository: 'github://pharo-graphics/Roassal:b508334';
lock;
load: #Full ]
on: MCMergeOrLoadWarning
do: [ :warning | warning load ].

layouts load.
exporters load
]

0 comments on commit 9da7b4f

Please sign in to comment.