[Newbies] Re: Loading Vivide IDE?

marcel.taeumel Marcel.Taeumel at hpi.de
Tue Jul 14 12:20:32 UTC 2015


Metacello can be loaded into Squeak 4.6 like this:
https://github.com/dalehenrich/metacello-work

"Get the Metacello configuration (for Squeak users)"
Installer gemsource
    project: 'metacello';
    addPackage: 'ConfigurationOfMetacello';
    install.

"Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic
version"
((Smalltalk at: #ConfigurationOfMetacello) project 
  version: #'previewBootstrap') load.

"Load the Preview version of Metacello from GitHub"
(Smalltalk at: #Metacello) new
  configuration: 'MetacelloPreview';
  version: #stable;
  repository: 'github://dalehenrich/metacello-work:configuration';
  load.
"Now load latest version of Metacello"
Metacello new
  baseline: 'Metacello';
  repository: 'github://dalehenrich/metacello-work:master/repository';
  get.
Metacello new
  baseline: 'Metacello';
  repository: 'github://dalehenrich/metacello-work:master/repository';
  onConflict: [:ex | ex allow];
  load.

Just do-it one code snippet after another in a workspace. Then:

Metacello new
  baseline: 'Vivide';
  repository: 'github://hpi-swa/vivide/repository';
  load.

For more examples, load the package VivideScripts:
https://github.com/hpi-swa/vivide/tree/master/repository/VivideScripts.package

I think this last step might work via the Monticello Browser tools.

Best,
Marcel



--
View this message in context: http://forum.world.st/Loading-Vivide-IDE-tp4837445p4837448.html
Sent from the Squeak - Beginners mailing list archive at Nabble.com.


More information about the Beginners mailing list