Is there a script that turns the main Pharo image into something more useful, including OmniBrowser?

I cannot use the latest version of dev Pharo due to some strange problems with the compiler built into Pharo. Well. I was wondering if there is a quick way to install all the great add-ons in Pharo that miss the core, compared to the dev image.

+3
source share
4 answers

With all non-core Pharo images, a script appears that was used to create this image. Just edit this file and drag it to the new kernel.

You can also tell me what you don't like about the Pharo images so that I can improve them.

+5

, OB ScriptLoader loadSuperOB.

( ):

, . , , OB (, OB, )

+1

CommandShell works with Pharo 9.10.10. You will encounter several errors when trying to download the package due to the fact that Pharo does not have MVC, but you can just go past the first group and abandon the last (which is trying to actually open CommandShell in Morphic). At this point, you will have a class called PipeableOSProcessthat can be very easily used to capture output. For example:

(PipeableOSProcess command: 'ls /bin') output

will return the contents of your bin directory as a string.

+1
source

Source: https://habr.com/ru/post/1712089/


All Articles