Skip to content

Install

Martín Dias edited this page Mar 11, 2026 · 10 revisions

To load this project, evaluate the following script on Pharo 13 or 14:

Metacello new
	baseline: 'SpecToplo';
	repository: 'github://pharo-graphics/Spec-Toplo:master/src';
	load

Add this project to your Baseline with:

spec baseline: 'SpecToplo' with: [ spec repository: 'github://pharo-graphics/Spec-Toplo:v0.9.0/src' ].

For development, this script may be convenient to be executed after load:

{
	'alexandrie'.
	'bloc'.
	'album'.
	'toplo'.
} do: [ :repoName |
	IceRepository registry
		select: [ :each | each name asLowercase = repoName ]
		thenDo: [ :each | (each branchNamed: 'dev') checkout. each fetch; pull ] ]
displayingProgress: [ :each | each ]

Clone this wiki locally