As I���m guessing that STON is not in that minimal image - I have tried to load ConfigurationOfSton into the image first by doing:
./pharo Pharo.image config http://ss3.gemstone.com/ss/STON ConfigurationOfSton --install=stable ���-save
It looks like this does load it, however when I then run my commands to load my code into the new image with:
./pharo Pharo.image --no-default-preferences --save --quit st loadLocal.st
(loadLocal.st has the Metacello expression I first mentioned) - I still seem to be getting an error as if STON is not in the image,
E.g.
UndefinedObject class>>fromStream:
And PharoDebug has lines confirming this (pointing at the method #repositoryProperties):
27 MessageNotUnderstood(Exception)>>signal
28 UndefinedObject class(Object)>>doesNotUnderstand: #fromStream:
29 repositoryProperties
repositoryProperties
ifNil: [
At this point, I am having trouble loading this minimal image with a ui, but if I use the command line and use the ���eval��� command line handler, and do something like:
./pharo Pharo.image eval "(Smalltalk at: #STONReader) class methods"
{STONReader class>>#on:}
It is showing me methods as if the class is there. Can anyone think of what I might be doing wrong? Or could try?
Tim